-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.81 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
{
"name": "cutelilglitches",
"type": "module",
"version": "1.0.0",
"main": "src/main/main.mjs",
"scripts": {
"format": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"package": "electron-packager . cute-lil-gremlins --platform=win32 --arch=x64 --out=dist --overwrite",
"build": "electron-builder -p --win"
},
"build": {
"appId": "com.thadeshammer.cutelilglitches",
"productName": "cutelilglitches",
"files": [
"src/**/*",
"public/**/*",
"node_modules/**/*",
"package.json"
],
"directories": {
"output": "dist"
},
"win": {
"target": "nsis"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowElevation": true,
"allowToChangeInstallationDirectory": true
}
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@eslint/js": "^9.3.0",
"concurrently": "^8.2.2",
"electron": "^30.0.8",
"electron-builder": "^24.13.3",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"glob": "^10.4.1",
"globals": "^15.3.0",
"http-server": "^14.1.1",
"prettier": "^3.2.5",
"prettier-plugin-sort-imports": "^1.8.5"
},
"dependencies": {
"@electron/packager": "^18.3.2",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-session": "^1.18.0",
"helm": "^0.2.1",
"helmet": "^7.1.0",
"js-yaml": "^4.1.0",
"logform": "^2.6.0",
"moment-timezone": "^0.5.45",
"node-fetch": "^3.3.2",
"passport": "^0.7.0",
"passport-twitch": "^1.0.3",
"passport-twitch-new": "^0.0.3",
"phaser": "^3.80.1",
"tmi.js": "^1.8.5",
"winston": "^3.13.0"
},
"engines": {
"node": ">=20.13.1"
}
}