forked from saltyshiomix/nextron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.79 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
67
68
{
"name": "nextron",
"version": "8.2.0",
"description": "⚡ NEXT.js + Electron ⚡",
"repository": "git@github.com:saltyshiomix/nextron.git",
"author": "Shiono Yoshihide <shiono.yoshihide@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/saltyshiomix/nextron",
"keywords": [
"electron",
"next",
"nextjs",
"next.js",
"react",
"reactjs",
"react.js",
"nextron"
],
"bugs": {
"url": "https://github.com/saltyshiomix/nextron/issues",
"email": "shiono.yoshihide@gmail.com"
},
"files": [
"bin",
"babel.js"
],
"bin": {
"nextron": "bin/nextron.js"
},
"scripts": {
"predev": "npm run build",
"dev": "node dev",
"prebuild": "rimraf bin",
"build": "rollup -c",
"prepublishOnly": "NODE_ENV=production npm run build"
},
"dependencies": {
"@babel/core": "7.18.13",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.18.9",
"@babel/plugin-proposal-optional-chaining": "7.18.9",
"@babel/plugin-transform-runtime": "7.18.10",
"@babel/preset-env": "7.18.10",
"@babel/preset-typescript": "7.18.6",
"@babel/runtime": "7.18.9",
"@babel/runtime-corejs3": "7.18.9",
"arg": "5.0.1",
"babel-loader": "8.2.5",
"chalk": "4.1.2",
"delay": "5.0.0",
"execa": "5.1.1",
"fs-extra": "10.1.0",
"webpack": "5.74.0",
"webpack-merge": "5.8.0"
},
"devDependencies": {
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.11.7",
"rimraf": "^3.0.2",
"rollup": "^2.78.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.8.2"
}
}