-
-
Notifications
You must be signed in to change notification settings - Fork 227
/
package.json
95 lines (95 loc) · 2.63 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "nextron",
"version": "9.4.0",
"description": "⚡ NEXT.js + Electron ⚡",
"repository": {
"type": "git",
"url": "https://github.com/saltyshiomix/nextron.git"
},
"author": {
"name": "Shiono Yoshihide",
"email": "[email protected]",
"url": "https://github.com/saltyshiomix"
},
"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": "[email protected]"
},
"files": [
"bin",
"babel.js"
],
"bin": {
"nextron": "bin/nextron.js"
},
"scripts": {
"predev": "npm run build",
"dev": "node dev",
"lint": "concurrently \"npm:lint:*\"",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"prebuild": "rimraf bin",
"build": "rollup -c --bundleConfigAsCjs",
"prepublishOnly": "NODE_ENV=production npm run build",
"prepare": "husky"
},
"dependencies": {
"@babel/core": "7.26.0",
"@babel/plugin-transform-class-properties": "7.25.9",
"@babel/plugin-transform-object-rest-spread": "7.25.9",
"@babel/plugin-transform-optional-chaining": "7.25.9",
"@babel/plugin-transform-runtime": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@babel/runtime": "7.26.0",
"@babel/runtime-corejs3": "7.26.0",
"arg": "5.0.2",
"babel-loader": "9.2.1",
"chalk": "4.1.2",
"execa": "5.1.1",
"fs-extra": "11.2.0",
"get-port-please": "3.1.2",
"terser-webpack-plugin": "5.3.10",
"tsconfig-paths-webpack-plugin": "4.1.0",
"webpack": "5.96.1",
"webpack-merge": "6.0.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^15.0.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/eslint": "^9.6.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"concurrently": "^9.1.0",
"eslint": "^9.14.0",
"eslint-config-next": "^14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.12.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"rimraf": "^6.0.1",
"rollup": "^4.25.0",
"rollup-plugin-auto-external": "^2.0.0",
"typescript": "^5.6.3"
}
}