-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.89 KB
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
{
"name": "ddplan",
"version": "1.0.0",
"description": "A modern menubar application for Dresden public transport timetables",
"author": {
"name": "4gray",
"email": "4gray@users.noreply.github.com"
},
"license": "MIT",
"homepage": "./",
"main": "electron-main.js",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"start:ng": "ng serve",
"build:ng": "ng build --base-href ./",
"start:electron": "npm run build:ng && electron .",
"start:dev": "concurrently \"npm run start:ng\" \"npm run electron:dev\"",
"electron:dev": "wait-on http://localhost:4200 && NODE_ENV=development electron .",
"package:electron": "npm run build:ng && electron-builder",
"lint": "ng lint"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.1.2",
"@angular/cdk": "^20.1.2",
"@angular/common": "^20.1.2",
"@angular/compiler": "^20.1.2",
"@angular/core": "^20.1.2",
"@angular/forms": "^20.1.2",
"@angular/material": "^20.1.2",
"@angular/platform-browser": "^20.1.2",
"@ngrx/signals": "20.0.0-rc.0",
"dvbjs": "^6.2.0",
"menubar": "^9.5.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "^20.1.1",
"@angular/cli": "^20.1.1",
"@angular/compiler-cli": "^20.1.2",
"angular-eslint": "19.6.0",
"concurrently": "^9.1.2",
"electron": "^32.3.3",
"electron-builder": "^26.0.12",
"eslint": "^9.27.0",
"prettier": "^3.5.3",
"typescript": "~5.8.3",
"typescript-eslint": "8.33.0",
"wait-on": "^8.0.3"
},
"build": {
"appId": "com.4gray.ddplan",
"productName": "DDPlan",
"publish": null,
"directories": {
"output": "dist/electron"
},
"files": [
"dist/ddplan/browser/**",
"electron-main.js",
"package.json",
"IconTemplate.png",
"icon.icns"
],
"mac": {
"icon": "icon.icns"
},
"win": {
"icon": "IconTemplate.png"
},
"linux": {
"icon": "IconTemplate.png",
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "deb",
"arch": [
"x64"
]
},
{
"target": "rpm",
"arch": [
"x64"
]
}
]
}
}
}