-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.28 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
{
"name": "crystal-live-panel",
"version": "1.0.4",
"description": "Pokémon Crystal live status overlay for RetroArch and OBS",
"author": "itsVicOC and Crystal Live Panel contributors",
"license": "MIT",
"homepage": "https://github.com/itsVicOC/Crystal-Live-Panel#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/itsVicOC/Crystal-Live-Panel.git"
},
"bugs": {
"url": "https://github.com/itsVicOC/Crystal-Live-Panel/issues"
},
"main": "dist-electron/main/main.js",
"type": "module",
"scripts": {
"prepare:background": "node scripts/prepare-background.mjs",
"build:renderer": "vite build",
"build:electron": "tsc -p tsconfig.electron.json && node scripts/copy-preload.mjs",
"build": "npm run build:renderer && npm run build:electron",
"start": "npm run build && electron .",
"dev": "npm run start",
"test": "vitest run src",
"test:udp": "ALLOW_UDP_TEST=1 vitest run src/main/retroarch-client.test.ts",
"test:watch": "vitest",
"package:win": "npm run build && electron-builder --win nsis --x64 --publish never",
"package:win:zip": "npm run build && electron-builder --win zip --x64 --publish never",
"package:win:all": "npm run build && electron-builder --win nsis zip --x64 --publish never"
},
"dependencies": {
"pngjs": "^7.0.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/node": "^24.3.0",
"@types/pngjs": "^6.0.5",
"@types/ws": "^8.18.1",
"electron": "^43.4.1",
"electron-builder": "^26.0.12",
"typescript": "^5.9.2",
"vite": "^7.1.3",
"vitest": "^3.2.4"
},
"build": {
"appId": "com.crystallive.panel",
"productName": "Crystal Live Panel",
"directories": {
"output": "release"
},
"asar": true,
"files": [
"dist-electron/**/*",
"!dist-electron/**/*.test.js",
"!dist-electron/**/*.test.js.map",
"!dist-electron/main/preload.js",
"!dist-electron/main/preload.js.map",
"dist-renderer/**/*",
"LICENSE",
"NOTICE.md",
"package.json"
],
"win": {
"target": "nsis",
"artifactName": "Crystal-Live-Panel-${version}-${arch}.${ext}"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true
}
}
}