This repository has been archived by the owner on Sep 22, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.76 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "viteron",
"version": "0.2.0",
"description": "⚡ vite + electron ⚡",
"repository": "[email protected]:saltyshiomix/viteron.git",
"author": "Shiono Yoshihide <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/saltyshiomix/viteron",
"keywords": [
"electron",
"vite",
"vitejs",
"vue",
"vuejs",
"viteron"
],
"bugs": {
"url": "https://github.com/saltyshiomix/viteron/issues",
"email": "[email protected]"
},
"files": [
"bin",
"babel.js"
],
"bin": {
"viteron": "bin/viteron.js"
},
"scripts": {
"predev": "npm run build",
"dev": "node dev",
"prebuild": "rimraf bin",
"build": "rollup -c",
"prepublishOnly": "cross-env NODE_ENV=production npm run build"
},
"dependencies": {
"@babel/core": "7.12.9",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
"@babel/plugin-proposal-optional-chaining": "7.12.7",
"@babel/plugin-transform-runtime": "7.12.1",
"@babel/preset-env": "7.12.7",
"@babel/preset-typescript": "7.12.7",
"@babel/runtime": "7.12.5",
"@babel/runtime-corejs3": "7.12.5",
"arg": "5.0.0",
"babel-loader": "8.2.2",
"chalk": "4.1.0",
"execa": "4.1.0",
"fs-extra": "9.0.1",
"webpack": "5.9.0",
"webpack-merge": "5.4.0"
},
"devDependencies": {
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@types/fs-extra": "^9.0.4",
"@types/node": "^14.14.10",
"cross-env": "^7.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.34.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.1.2"
}
}