generated from electron/electron-quick-start-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.05 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
{
"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",
"dist": "npm run build && electron-builder",
"start": "npm run build && electron ./out/main.js"
},
"repository": "https://github.com/electron/electron-quick-start-typescript",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo",
"typescript"
],
"main": "out/main.js",
"author": "GitHub",
"license": "CC0-1.0",
"devDependencies": {
"@types/lodash": "^4.14.171",
"@types/underscore": "^1.11.3",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"electron": "^11",
"eslint": "^7.30.0",
"typescript": "^4.3.5",
"electron-builder": "^22.11.8",
"electron-osx-sign": "^0.5.0",
"electron-publish": "^22.11"
},
"dependencies": {
"lodash": "^4.17.21",
"underscore": "^1.13.1"
}
}