-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
81 lines (81 loc) · 2.2 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
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
{
"name": "isaac-racing-client",
"version": "1.1.51",
"description": "A racing mod for The Binding of Isaac: Repentance",
"homepage": "https://isaacracing.net",
"bugs": {
"url": "https://github.com/Zamiell/isaac-racing-client/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zamiell/isaac-racing-client.git"
},
"license": "GPL-3.0",
"author": "Racing+",
"type": "commonjs",
"main": "./dist/main/main.js",
"scripts": {
"build": "bash ./build.sh",
"lint": "npx tsx --tsconfig ./scripts/tsconfig.json ./scripts/lint.mts",
"nuke": "isaacscript nuke",
"update": "isaacscript update"
},
"dependencies": {
"@electron/remote": "^2.1.2",
"@types/source-map-support": "^0.5.10",
"electron-context-menu": "^3.6.1",
"electron-log": "^5.1.1",
"electron-store": "^8.1.0",
"electron-updater": "^6.1.8",
"isaac-racing-common": "^1.0.13",
"isaacscript-common-ts": "^16.1.0",
"klaw-sync": "^6.0.0",
"linkify-html": "^4.1.3",
"linkifyjs": "^4.1.3",
"mkdirp": "^3.0.1",
"ps-node": "^0.1.6",
"simple-vdf": "^1.1.1",
"source-map-support": "^0.5.21",
"winreg": "^1.2.5"
},
"devDependencies": {
"@types/jquery": "^3.5.29",
"@types/klaw-sync": "^6.0.5",
"@types/mkdirp": "^1.0.2",
"@types/node": "^20.11.20",
"@types/ps-node": "^0.1.3",
"@types/tooltipster": "^0.0.35",
"@types/winreg": "^1.2.36",
"electron": "23.3.7",
"electron-builder": "^24.12.0",
"isaacscript": "^4.2.2",
"isaacscript-common-node": "^3.0.1",
"isaacscript-lint": "^6.20.0",
"isaacscript-spell": "^1.14.0",
"isaacscript-tsconfig": "^5.0.0",
"ts-loader": "^9.5.1",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
},
"packageManager": "[email protected]",
"build": {
"appId": "org.electron.IsaacRacingPlus",
"files": [
"./build/**/*",
"./dist/**/*",
"./static/**/*"
],
"publish": {
"provider": "github",
"releaseType": "release"
},
"asarUnpack": [
"./dist/main/childProcesses/*",
"./static/js/greenworks/*",
"./static/data/sandbox/*"
]
},
"productName": "Racing+"
}