forked from SubliminalsTV-Projects/sc-overlay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.53 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.53 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
{
"name": "sc-log-watcher",
"version": "0.1.42",
"description": "SubliminalsTV SC Overlay - game.log watcher + widget canvas for Star Citizen.",
"type": "module",
"main": "electron/main.cjs",
"author": "SubliminalsTV",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "tsx src/index.ts",
"overlay": "tsx src/overlay-server.ts",
"missions-dump": "tsx src/missions-dump.ts",
"missions-replay": "tsx src/missions-replay.ts",
"screen-read-dump": "tsx src/screen-read-dump.ts",
"test:widgets": "node --check tools/widget-dom-test.cjs && electron tools/widget-dom-test.cjs",
"standalone": "tsx src/standalone.ts",
"overlay-app": "electron electron/main.cjs",
"package": "node tools/package.mjs",
"build:server": "node tools/build-server.mjs",
"dist": "npm run build:server && electron-builder",
"build": "tsc",
"typecheck": "tsc --noEmit",
"test:glyph": "tsx tools/glyph-geom-test.ts && electron tools/glyph-test.cjs",
"test:classify": "tsx src/mission-classify.test.ts",
"test:feedback": "tsx src/mission-feedback.test.ts",
"test:fabclaim": "tsx src/fab-claim.test.ts",
"simulate": "node tools/simulate.mjs",
"test:logenv": "tsx src/log-env.test.ts",
"test:mining": "tsx src/mining-debris.test.ts",
"test:report": "tsx src/report-blueprints.test.ts",
"test:screenocr": "tsx src/screen-resurrect.test.ts",
"test:repaccrual": "tsx src/rep-accrual.test.ts",
"test:logpaths": "tsx src/log-paths.test.ts",
"test:logshare": "tsx src/log-share.test.ts",
"test:chat": "node chat-server/server.test.mjs && tsx src/chat.test.ts",
"chat-server": "node chat-server/server.mjs",
"dev:fresh": "node tools/dev-fresh.mjs",
"test:location": "tsx src/location.test.ts"
},
"dependencies": {
"@gutenye/ocr-node": "^1.4.8",
"electron-updater": "^6.3.9",
"koffi": "^3.1.4",
"uiohook-napi": "^1.5.5"
},
"devDependencies": {
"@types/node": "^22.10.0",
"electron": "^43.0.0",
"electron-builder": "^25.1.8",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"build": {
"appId": "gg.subliminal.blueprint-tracker",
"productName": "SC Overlay",
"directories": {
"output": "release",
"buildResources": "build"
},
"files": [
"electron/**/*",
"!**/*.map",
"!**/node_modules/onnxruntime-node/bin/napi-v6/darwin/**",
"!**/node_modules/onnxruntime-node/bin/napi-v6/linux/**",
"!**/node_modules/onnxruntime-node/bin/napi-v6/win32/arm64/**",
"!**/node_modules/onnxruntime-node/bin/napi-v6/win32/ia32/**",
"!**/node_modules/onnxruntime-node/bin/napi-v6/win32/x64/DirectML.dll",
"!**/node_modules/onnxruntime-node/bin/napi-v6/win32/x64/dxcompiler.dll",
"!**/node_modules/onnxruntime-node/bin/napi-v6/win32/x64/dxil.dll"
],
"asarUnpack": [
"**/node_modules/uiohook-napi/**",
"**/node_modules/onnxruntime-node/**",
"**/node_modules/@gutenye/**",
"**/node_modules/@techstark/**",
"**/node_modules/koffi/**",
"**/node_modules/@koromix/**"
],
"npmRebuild": false,
"extraResources": [
{
"from": "build/server",
"to": "server"
}
],
"win": {
"target": "nsis",
"icon": "build/icon.png"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"shortcutName": "SC Overlay"
},
"publish": [
{
"provider": "generic",
"url": "https://subliminal.gg/api/updates/blueprint-tracker"
}
]
}
}