-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.28 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.28 KB
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
{
"name": "zmk-studio",
"productName": "ZMK Studio",
"version": "0.1.0",
"main": "public/electron.js",
"homepage": "./",
"private": true,
"dependencies": {
"@types/node": "^12.12.47",
"@types/react": "^16.9.36",
"@types/react-dom": "^16.9.8",
"antd": "^4.3.4",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"typescript": "^3.7.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"electron": "cross-env ELECTRON_START_URL=http://localhost:3000 electron .",
"package": "npm run build && electron-builder build -c.extraMetadata.main=build/electron.js --publish never"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"cross-env": "^7.0.2",
"electron": "^9.0.4",
"electron-builder": "^22.7.0"
},
"build": {
"appId": "dev.zmkfirmware.zmk-studio",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
}
}