-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 KB
/
package.json
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
{
"name": "obs-replay-tool",
"version": "1.0.0",
"description": "OBSReplayTool",
"main": "out/dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && electron-builder",
"start": "electron -r ts-node/register src/index.ts"
},
"author": "angelolz",
"license": "ISC",
"dependencies": {
"active-win": "^8.1.1",
"obs-websocket-js": "^5.0.3",
"prettier": "^3.4.2"
},
"devDependencies": {
"@types/node": "^22.10.2",
"electron": "^27.1.2",
"electron-builder": "^25.1.8",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"build": {
"appId": "com.angelolz.obsReplayTool",
"productName": "OBSReplayTool",
"directories": {
"output": "out/builds"
},
"files": [
"out/dist/**/*",
"node_modules/**/*",
"package.json",
"img/**/*",
"src/overlays/app/*",
"src/overlays/logger/*"
],
"extraFiles": [
"default_config.json",
"img/**/*"
],
"win": {
"target": ["portable", "nsis"],
"icon": "./icon.png"
}
}
}