-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.46 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
{
"name": "electron-quick-start-typescript",
"version": "1.0.0",
"description": "A minimal Electron application written with Typescript",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint -c .eslintrc --ext .ts ./src",
"start": "npm run build && electron ./dist/main.js",
"rebuild": "electron-rebuild",
"dist": "node-gyp install && electron-builder --win --x64",
"postinstall": "patch-package"
},
"license": "CC0-1.0",
"build": {
"buildVersion": "1.0.0.0",
"compression": "normal",
"win": {
"target": "nsis",
"verifyUpdateCodeSignature": false
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"differentialPackage": false
},
"squirrelWindows": {
"msi": "true"
},
"msi": {
"warningsAsErrors": false
},
"appx": {
"publisherDisplayName": "test"
},
"electronVersion": "21.3.1",
"buildDependenciesFromSource": true,
"nodeGypRebuild": false,
"npmRebuild": true,
"extends": null
},
"devDependencies": {
"@electron/rebuild": "^3.2.10",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"electron": "21.3.1",
"electron-builder": "24.0.0-alpha.3",
"eslint": "^7.32.0",
"patch-package": "^6.4.7",
"typescript": "^4.8.3"
},
"dependencies": {
"inversify": "6.0.1",
"reflect-metadata": "^0.1.13"
}
}