-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.94 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.94 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
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
{
"name": "snakescreen",
"version": "1.1.2",
"private": true,
"main": "public/electron.js",
"homepage": ".",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource/roboto": "^5.1.1",
"@frc-web-components/react": "^2.1.0",
"@mui/icons-material": "^6.4.3",
"@mui/material": "^6.4.1",
"@types/estree": "^1.0.6",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"electron-updater": "^6.6.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-scripts": "5.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "npm run app:build",
"app:build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron": "electron .",
"electron:start": "npm run app:build && npm run electron",
"electron:dir": "electron-builder --dir",
"electron:build": "electron-builder",
"publish": "electron-builder -p always",
"build-publish": "npm run build && npm run publish"
},
"devDependencies": {
"electron": "^35.0.2",
"electron-builder": "^25.1.8",
"react-scripts": "latest"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"build": {
"appId": "org.team401.snakescreen",
"productName": "SnakeScreen",
"directories": {
"output": "dist"
},
"files": [
"build/**/*"
],
"publish": [
{
"provider": "github",
"releaseType": "release"
}
],
"mac": {
"category": "public.app-category.utilities"
},
"win": {
"icon": "build/icon.ico",
"target": "nsis",
"artifactName": "SnakeScreen-Setup.exe"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}