-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json.dev
More file actions
114 lines (113 loc) · 2.7 KB
/
package.json.dev
File metadata and controls
114 lines (113 loc) · 2.7 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
{
"name": "gamesentenceminer",
"productName": "GameSentenceMiner",
"version": "1.15.8",
"description": "GameSentenceMiner",
"main": "dist/main/main.js",
"scripts": {
"start": "npm run build && electron .",
"build": "tsc",
"dev": "tsc --watch",
"app:dir": "electron-builder --dir",
"app:dist": "tsc && electron-builder",
"app:deploy": "electron-builder --publish=always"
},
"type": "module",
"engines": {
"node": ">=18"
},
"tsc": {},
"build": {
"asar": false,
"appId": "com.bpwhelan.gsm",
"files": [
"dist/main/**/*",
"electron-src/main/index.html",
"electron-src/main/overlay/*.cjs",
"electron-src/main/overlay/*.py",
"assets/*"
],
"extraFiles": [
{
"from": "electron-src/assets",
"to": "resources/assets"
},
{
"from": "GameSentenceMiner",
"to": "resources/GameSentenceMiner"
},
{
"from": "pyproject.toml",
"to": "resources/pyproject.toml"
},
{
"from": "uv.lock",
"to": "resources/uv.lock"
},
{
"from": "runtime-lock-manifest.json",
"to": "resources/runtime-lock-manifest.json"
},
{
"from": "GSM_Overlay/yomitan",
"to": "resources/GSM_Overlay/yomitan"
}
],
"win": {
"target": "nsis",
"icon": "assets/gsm.ico",
"sign": false,
"artifactName": "${productName}-Setup-${version}.${ext}"
},
"mac": {
"target": "dmg"
},
"linux": {
"target": "AppImage"
},
"publish": [
{
"provider": "github",
"owner": "bpwhelan",
"repo": "GameSentenceMiner",
"releaseType": "release"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/bpwhelan/GameSentenceMiner.git"
},
"author": "Beangate",
"license": "LGPL-3.0-only",
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/extract-zip": "^2.0.1",
"@types/tmp": "^0.2.6",
"@types/ws": "^8.18.0",
"electron": "^35.0.1",
"electron-builder": "^25.1.8",
"typescript": "^5.8.2"
},
"dependencies": {
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"archiver": "^7.0.1",
"archiver-utils": "^5.0.2",
"axios": "^1.8.1",
"detect-port": "^2.1.0",
"electron-log": "^5.3.2",
"electron-store": "^10.0.1",
"electron-updater": "^6.3.9",
"extract-zip": "^2.0.1",
"fuse.js": "^7.1.0",
"kuroshiro": "^1.2.0",
"kuroshiro-analyzer-kuromoji": "^1.1.0",
"node-window-manager": "^2.2.4",
"nodejs-file-downloader": "^4.13.0",
"obs-websocket-js": "^5.0.6",
"tar": "^7.4.3",
"wanakana": "^5.3.1",
"ws": "^8.18.1"
}
}