-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 935 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "vite-plugin-babel-compiler",
"version": "0.4.0",
"license": "MIT",
"author": "yzydeveloper",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"description": "Using Babel Compiler with Vite",
"keywords": [
"vite",
"esbuild"
],
"homepage": "https://github.com/yzydeveloper/vite-plugin-babel-compiler",
"repository": {
"type": "git",
"url": "https://github.com/yzydeveloper/vite-plugin-babel-compiler"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch"
},
"dependencies": {
"@babel/core": "^7.17.9"
},
"devDependencies": {
"@types/babel__core": "^7.1.19",
"@types/node": "^17.0.30",
"@yzydeveloper/eslint-config": "^0.1.4",
"eslint": "^8.12.0",
"tsup": "^5.12.1",
"typescript": "^4.6.3"
},
"peerDependencies": {
"@babel/core": "^7.17.9",
"vite": ">=2.0.0"
}
}