-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 4.06 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 4.06 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "rigscope",
"version": "1.1.1",
"private": true,
"description": "Cross-platform local hardware inventory, diagnostics, benchmark, and stress-test dashboard.",
"main": "electron/main.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/FaulMit/rigscope.git"
},
"author": {
"name": "RigScope",
"email": "releases@rigscope.local"
},
"scripts": {
"start": "node server.js",
"open": "node server.js --open",
"app": "node server.js --app",
"scoreboard": "node scoreboard/server.js",
"scoreboard:cf:dev": "npx wrangler@latest dev --config scoreboard/cloudflare/wrangler.toml",
"scoreboard:cf:migrate:local": "npx wrangler@latest d1 execute rigscope-scoreboard --local --file scoreboard/cloudflare/schema.sql --config scoreboard/cloudflare/wrangler.toml",
"scoreboard:cf:migrate": "npx wrangler@latest d1 execute rigscope-scoreboard --remote --file scoreboard/cloudflare/schema.sql --config scoreboard/cloudflare/wrangler.toml",
"scoreboard:cf:deploy": "npx wrangler@latest deploy --config scoreboard/cloudflare/wrangler.toml",
"verify": "node scripts/preflight.js",
"sync:docs": "node scripts/sync-docs-demo.js",
"check:docs": "node scripts/sync-docs-demo.js --check",
"test": "node scripts/run-tests.js",
"release:notes": "node scripts/release-notes.js",
"desktop": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist:win": "electron-builder --win portable nsis",
"dist:win:x64": "electron-builder --win portable nsis --x64",
"dist:win:ia32": "electron-builder --win portable nsis --ia32",
"dist:win:arm64": "electron-builder --win portable nsis --arm64",
"dist:win:all": "electron-builder --win portable nsis --x64 --ia32 --arm64",
"dist:linux": "electron-builder --linux AppImage deb tar.gz",
"dist:linux:x64": "electron-builder --linux AppImage deb tar.gz --x64",
"dist:linux:arm64": "electron-builder --linux AppImage deb tar.gz --arm64",
"dist:mac": "electron-builder --mac dmg zip",
"dist:mac:x64": "electron-builder --mac dmg zip --x64",
"dist:mac:arm64": "electron-builder --mac dmg zip --arm64",
"dist:mac:universal": "electron-builder --mac dmg zip --universal"
},
"engines": {
"node": ">=22.12"
},
"dependencies": {
"electron-updater": "^6.8.3"
},
"devDependencies": {
"@electron/notarize": "^3.1.1",
"electron": "^41.3.0",
"electron-builder": "^26.8.1"
},
"build": {
"appId": "dev.rigscope.app",
"productName": "RigScope",
"asar": true,
"files": [
"electron/**/*",
"lib/**/*",
"public/**/*",
"build/**/*",
"native-bridges.js",
"native-runners.js",
"server.js",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"directories": {
"output": "release"
},
"publish": [
{
"provider": "github",
"owner": "FaulMit",
"repo": "rigscope"
}
],
"win": {
"icon": "build/icon.ico",
"target": [
"portable",
"nsis"
]
},
"portable": {
"artifactName": "RigScope-Portable-${version}-${arch}.${ext}"
},
"nsis": {
"artifactName": "RigScope-Setup-${version}-${arch}.${ext}",
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"linux": {
"icon": "build/icon.png",
"target": [
"AppImage",
"deb",
"tar.gz"
],
"artifactName": "RigScope-${version}-linux-${arch}.${ext}",
"category": "System"
},
"mac": {
"target": [
"dmg",
"zip"
],
"artifactName": "RigScope-${version}-mac-${arch}.${ext}",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"category": "public.app-category.utilities"
},
"afterSign": "scripts/notarize.js"
}
}