-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
{
"name": "setscript-desktop",
"version": "1.0.0",
"description": "SetScript Desktop Application",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"watch": "webpack --watch --config webpack.config.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"discord-rpc": "^4.0.1",
"ejs": "^3.1.10",
"electron-store": "^8.1.0",
"express": "^4.21.2",
"framer-motion": "^10.16.4",
"node-fetch": "^2.7.0",
"react-icons": "^4.12.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-react": "^7.22.15",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"electron": "^28.1.0",
"electron-builder": "^24.9.1",
"style-loader": "^3.3.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"build": {
"appId": "com.setscript.desktop",
"win": {
"target": "nsis",
"icon": "assets/icon.ico"
}
}
}