-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
54 lines (54 loc) · 1.21 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "wp2vite",
"version": "2.0.9",
"description": "make webpack project support vite",
"main": "dist/index.js",
"bin": {
"wp2vite": "bin.js"
},
"scripts": {
"build": "rm -rf ./dist && rollup -c",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tnfe/wp2vite.git"
},
"keywords": [
"webpack",
"vite",
"webpack2vite",
"wp2vite"
],
"files": [
"dist/*",
"README.md",
"bin.js"
],
"author": "dravenww",
"license": "ISC",
"bugs": {
"url": "https://github.com/tnfe/wp2vite/issues"
},
"homepage": "https://github.com/tnfe/wp2vite#readme",
"dependencies": {
"cac": "^6.7.2",
"chalk": "^4.1.0",
"load-json-file": "^6.2.0",
"write-json-file": "^4.3.0",
"js-beautify": "^1.14.0"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"resolve": "^1.20.0",
"rollup": "^2.44.0",
"rollup-plugin-terser": "^7.0.2"
}
}