-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "electron-typescript-angular",
"version": "0.0.0",
"main": "build/main.js",
"scripts": {
"ng": "ng",
"start": "ng serve",
"electron-start": "npm run electron-build && electron ./build/main.js --dev",
"angular-build": "ng build --base-href",
"electron-build": "tsc --project tsconfig.electron.json",
"electron-package": "npm run angular-build && npm run electron-build && npx electron-builder --publish never"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.0",
"@angular/common": "^18.2.0",
"@angular/compiler": "^18.2.0",
"@angular/core": "^18.2.0",
"@angular/forms": "^18.2.0",
"@angular/platform-browser": "^18.2.0",
"@angular/platform-browser-dynamic": "^18.2.0",
"@angular/router": "^18.2.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.1",
"@angular/cli": "^18.2.1",
"@angular/compiler-cli": "^18.2.0",
"electron": "^32.0.1",
"electron-builder": "^24.13.3",
"typescript": "~5.5.2"
},
"build": {
"appId": "dev.sumanth.yourappid",
"files": [
"build/"
]
}
}