-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.81 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
{
"name": "ibaraki-example",
"version": "0.0.3",
"scripts": {
"angular:ng": "ng",
"angular:start": "ng serve",
"angular:build": "ng build --base-href ./ --output-path ./dist && sed -i 's@<base href=\"/\">@<base href=\"./\">@g' dist/browser/index.html",
"angular:watch": "ng build --watch --configuration development",
"angular:test": "ng test",
"electron:tsc": "tsc -p ./tsconfig.electron.json",
"electron:start": "npm run electron:tsc && electron .",
"electron:build": "npm run electron:tsc && electron-builder --win --linux --x64",
"electron:build:linux": "npm run electron:tsc && electron-builder --linux",
"electron:build:win": "npm run electron:tsc && electron-builder --win",
"start": "NODE_ENV=development npm-run-all --parallel angular:start electron:start",
"start:tools": "NODE_ENV=development DEV_TOOLS=true npm-run-all --parallel angular:start electron:start",
"start:prod": "npm run angular:build && NODE_ENV=production npm run electron:start",
"start:prod:tools": "npm run angular:build && NODE_ENV=production DEV_TOOLS=true npm run electron:start",
"build": "npm run angular:build && npm run electron:build",
"build:linux": "npm run angular:build && npm run electron:build:linux",
"build:win": "npm run angular:build && npm run electron:build:win"
},
"main": "lib/app.js",
"private": true,
"dependencies": {
"@angular/animations": "^19.0.3",
"@angular/common": "^19.0.3",
"@angular/compiler": "^19.0.3",
"@angular/core": "^19.0.3",
"@angular/forms": "^19.0.3",
"@angular/platform-browser": "^19.0.3",
"@angular/platform-browser-dynamic": "^19.0.3",
"@angular/router": "^19.0.3",
"ngx-electronyzer": "^18.2.0",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.4",
"@angular/cli": "^19.0.4",
"@angular/compiler-cli": "^19.0.3",
"@types/jasmine": "~5.1.5",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"jasmine-core": "~5.5.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"npm-run-all": "^4.1.5",
"typescript": "~5.6.3"
},
"bugs": {
"email": "[email protected]",
"url": "https://git.ibaraki.app/apps/ai/dataset/-/issues"
},
"build": {
"appId": "fr.ibaraki.example",
"productName": "Ibaraki Example",
"copyright": "Copyright (c) 2024 Ibaraki Douji",
"files": [
"dist/browser/**/*",
"node_modules/**/*",
"public/**/*",
"lib/**/*",
"package.json"
],
"directories": {
"output": "dist"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Utility",
"icon": "public"
},
"win": {
"target": [
"portable",
"nsis"
],
"icon": "public/favicon.ico"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"installerIcon": "public/favicon.ico",
"uninstallerIcon": "public/favicon.ico",
"installerHeaderIcon": "public/favicon.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Ibaraki Example",
"differentialPackage": false
},
"portable": {
"artifactName": "${productName}-portable-${version}.${ext}"
},
"extraResources": [
{
"from": "public",
"to": "public",
"filter": [
"**/*.ico"
]
}
]
},
"author": {
"email": "[email protected]",
"name": "Ibaraki Douji",
"url": "https://ibaraki.app"
},
"homepage": "https://git.ibaraki.app/apps/ai/dataset",
"license": "ISC",
"description": "Ibaraki Example"
}