generated from electron/electron-quick-start-typescript
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.49 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
{
"name": "my-electron-crasher",
"version": "1.0.0",
"database": "fred",
"description": "A minimal Electron application written with Typescript",
"scripts": {
"start": "electron ./dist/src/main.js",
"prestart": "npm run build",
"build": "npm run build:ts",
"build:all": "npm run build:ts && npm run build:cpp",
"build:ts": "npx tsc",
"build:cpp": "cmake-js compile --debug && copyfiles --flat ./build/Debug/addon.node ./dist",
"postbuild:cpp": "npx symbol-upload -u fred@bugsplat.com -p Flintstone -d ./dist -f \"/**/*.node\" -m",
"postbuild:ts": "npx symbol-upload -u fred@bugsplat.com -p Flintstone -d ./dist -f \"/**/*.js.map\"",
"watch": "tsc -w",
"lint": "npx eslint ./src"
},
"repository": "https://github.com/electron/electron-quick-start-typescript",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo",
"bugsplat",
"crash",
"error",
"exception",
"crashpad",
"breakpad",
"reporting",
"javascript",
"typescript"
],
"author": "BugSplat",
"license": "CC0-1.0",
"dependencies": {
"bugsplat-node": "^3.0.2",
"dotenv": "^16.4.5",
"node-addon-api": "^3.2.1"
},
"devDependencies": {
"@bugsplat/symbol-upload": "^10.1.2",
"@eslint/js": "^9.0.0",
"@types/node": "^20.12.7",
"cmake-js": "^7.2.1",
"copyfiles": "^2.4.1",
"dotenv": "^16.4.5",
"electron": "^33.0.1",
"eslint": "^8.57.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.0"
}
}