-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.26 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
{
"name": "scpterminal",
"version": "0.0.3",
"main": "dist/main.js",
"description": "an scp terminal made in electron",
"author": "mellobacon <>",
"scripts": {
"build": "tsc && copyfiles -f src/pages/*.html dist/pages && copyfiles -f src/components/styles/*.css dist/components/styles/ && copyfiles -f src/components/images/*.png dist/components/images && copyfiles -f src/icon.png dist/",
"start": "yarn build && electron .",
"dist": "electron-builder"
},
"files": [
"dist/**/**"
],
"build": {
"appId": "com.scpterminal",
"win": {
"target": [
"nsis",
"msi"
]
},
"linux": {
"target": [
"deb",
"rpm",
"snap",
"AppImage"
]
},
"icon": "dist/icon.png",
"files": [
"dist/**/**",
"package.json"
],
"directories": {
"buildResources": "dist",
"output": "release"
}
},
"dependencies": {
"axios": "^1.6.7",
"cheerio": "^1.0.0-rc.10",
"copyfiles": "^2.4.1",
"jquery": "^3.6.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/jquery": "^3.5.6",
"electron": "^29.0.1",
"electron-builder": "^24.12.0",
"ts-loader": "^9.2.2",
"webpack": "^5.37.1",
"webpack-cli": "^5.1.4"
}
}