-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.4 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.4 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
{
"name": "redalert",
"version": "1.2.3",
"description": "",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"postinstall": "node -e \"if(process.platform!=='win32'){try{require('fs').chmodSync('node_modules/systray2/traybin/tray_linux_release',0o755)}catch(e){}}\"",
"start": "node src/main.js",
"build": "node scripts/build.js",
"build:win": "node scripts/build.js --win",
"build:mac": "node scripts/build.js --mac",
"build:mac-x64": "node scripts/build.js --mac-x64",
"build:linux": "node scripts/build.js --linux",
"build:all": "node scripts/build.js --all",
"build:msi": "node scripts/build.js --win && node scripts/build-msi.js",
"build:dmg": "node scripts/build.js --mac && node scripts/build-dmg.js",
"generate-assets": "node scripts/generate-assets.js",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:debug": "playwright test --debug",
"test:report": "playwright show-report"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"express": "^5.2.1",
"express-rate-limit": "^8.3.0",
"node-notifier": "^10.0.1",
"open": "^11.0.0",
"systray2": "^2.1.4"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@yao-pkg/pkg": "^6.14.1",
"axios": "^1.13.6",
"esbuild": "^0.27.3",
"pkg": "^5.8.1",
"sharp": "^0.34.5"
}
}