forked from electron/electron-quick-start
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.16 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
{
"name": "electron-typescript-starter",
"version": "1.0.0",
"description": "A minimal Electron application using typescript",
"main": "main.js",
"scripts": {
"configure": "typings install",
"clean": "rimraf dist/",
"copy": "cpx \"src/**/*.{html,json}\" dist/",
"build": "npm run clean && npm run copy && tsc",
"start": "npm run build && electron ./dist/main.js",
"watch": "npm run build && concurrently --kill-others \"electron ./dist/main.js\" \"tsc -w\" \"cpx \"src/**/*.{html,json}\" dist/ -w\"",
"pack": "npm run build && electron-packager dist/ --out builds --overwrite",
"pack-all": "npm run build && electron-packager dist/ --all --out builds --overwrite"
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo",
"typescript"
],
"author": "AAllard",
"license": "CC0-1.0",
"devDependencies": {
"concurrently": "^3.1.0",
"cpx": "^1.5.0",
"electron": "^1.4.1",
"electron-packager": "^8.1.0",
"electron-reload": "^1.0.2",
"rimraf": "^2.5.4",
"typescript": "^2.0.3",
"typings": "^1.4.0"
}
}