-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (58 loc) · 1.52 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
58
59
{
"name": "electron-quick-start-typescript-vue",
"version": "1.0.0",
"description": "A minimal Electron application written with Typescript",
"scripts": {
"dev": "electron-webpack dev",
"lint": "tslint -c tslint.json -p tsconfig.json",
"start": "npm run build && electron ./dist/main.js",
"compile": "electron-webpack",
"dist": "npm run compile && electron-builder",
"dist:dir": "npm run dist --dir -c.compression=store -c.mac.identity=null"
},
"repository": "https://github.com/yantze/electron-quick-start-typescript-vue",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo",
"typescript",
"vue"
],
"author": "GitHub",
"license": "CC0-1.0",
"devDependencies": {
"babel-loader": "^8.0.0",
"css-loader": "^1.0.0",
"electron": "^2.0.8",
"electron-builder": "^20.28.3",
"electron-webpack": "^2.3.1",
"electron-webpack-ts": "^2.1.1",
"electron-webpack-vue": "^2.2.1",
"ts-loader": "^4.5.0",
"tslint": "^5.10.0",
"typescript": "^2.9.2",
"vue": "^2.5.17",
"vue-loader": "^15.4.1",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"source-map-support": "^0.5.9"
},
"electronWebpack": {
"commonSourceDirectory": "src/common",
"renderer": {
"webpackConfig": "custom.webpack.additions.js"
}
},
"build": {
"appId": "com.github.yantze.app",
"mac": {
"category": "public.app-category.Reference"
},
"win": {}
}
}