-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
137 lines (137 loc) · 3.33 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "{{ApplicationName}}",
"version": "0.0.0",
"main": "main.js",
"description": "{{ApplicationDescription}}",
"author": {
"name": "{{AuthorName}}",
"email": "{{AuthorEmail}}"
},
"scripts": {
"ng": "ng",
"debug": "electron .",
"electron": "ng build --base-href ./ && electron .",
"electron-build": "ng build --base-href ./ --prod && electron .",
"pack": "electron-builder --dir",
"dist": "ng build --base-href ./ --prod && electron-builder",
"update": "npx npm-check-updates -u && npm i"
},
"build": {
"directories": {
"output": "out"
},
"appId": "{{ApplicationDomain: com.sample.app}}",
"asar": true,
"files": [
"**/*",
"dist/**/*"
],
"copyright": "{{Copyright}}",
"mac": {
"category": "{{macApplicationCategory}}",
"artifactName": "${productName}-${version}-${arch}.${ext}"
},
"linux": {
"category": "Util;GNOME;GTK",
"packageCategory": "GNOME;GTK",
"description": "{{ApplicationDescription}}",
"target": [
"deb",
"zip",
"AppImage",
"snap"
],
"maintainer": "{{AuthorName}} <{{AuthorEmail}}>",
"artifactName": "${productName}-${version}-${arch}.${ext}"
},
"deb": {
"synopsis": "{{ApplicationName}}"
},
"snap": {
"synopsis": "{{ApplicationName}}"
},
"dmg": {
"background": "build/background.png",
"icon": "build/icon.png",
"iconSize": 512,
"contents": [
{
"x": 380,
"y": 280,
"type": "link",
"path": "/Applications"
},
{
"x": 110,
"y": 280,
"type": "file"
}
],
"window": {
"width": 500,
"height": 500
}
},
"win": {
"target": [
{
"target": "nsis-web",
"arch": [
"x64",
"ia32"
]
}
],
"icon": "build/icon.ico",
"publisherName": "{{AuthorName}}"
},
"nsis": {
"perMachine": true,
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"keywords": [
"{{SomeKeyWords}}",
"electron",
"electron-app"
],
"private": true,
"dependencies": {
"@angular/animations": "11.2.0",
"@angular/common": "11.2.0",
"@angular/compiler": "11.2.0",
"@angular/core": "11.2.0",
"@angular/forms": "11.2.0",
"@angular/platform-browser": "11.2.0",
"@angular/platform-browser-dynamic": "11.2.0",
"@angular/router": "11.2.0",
"core-js": "3.8.3",
"rxjs": "6.6.3",
"tslib": "^2.1.0",
"zone.js": "0.11.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1102.0",
"@angular/cli": "11.2.0",
"@angular/compiler-cli": "11.2.0",
"@angular/language-service": "11.2.0",
"@types/electron": "^1.6.10",
"@types/jasmine": "3.6.3",
"@types/jasminewd2": "~2.0.8",
"@types/node": "14.14.28",
"codelyzer": "6.0.1",
"electron": "11.2.3",
"jasmine-core": "3.6.0",
"jasmine-spec-reporter": "~6.0.0",
"karma": "6.1.1",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.5.4",
"protractor": "~7.0.0",
"ts-node": "9.1.1",
"tslint": "5.20.1",
"typescript": "4.1.5"
}
}