-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.09 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
{
"name": "gdext",
"version": "0.1.6",
"description": "GDExt",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build": "npm run --prefix editor/ build && npx electron-builder --win --publish never",
"deploy": "npx electron-builder --win --publish never",
"publish": "npx electron-builder --win --publish always"
},
"build": {
"productName": "GDExt",
"nsis": {
"artifactName": "GDExt.${version}.Installer.${ext}",
"uninstallDisplayName": "GDExt"
},
"extraFiles": [
"injector.exe",
"gdext.dll",
"GDExt-attach.dll"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/gdext/electron.git"
},
"keywords": [],
"author": "Ucrash",
"license": "MIT",
"bugs": {
"url": "https://github.com/gdext/electron/issues"
},
"homepage": "https://github.com/gdext/electron#readme",
"devDependencies": {
"electron": "^11.1.0"
},
"dependencies": {
"discord-rpc": "^3.2.0",
"electron-updater": "^4.3.8",
"tasklist": "^4.0.1"
}
}