-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.4 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
{
"name": "translator",
"version": "0.5.2",
"scripts": {
"ng": "ng",
"start": "ng serve --host 0.0.0.0",
"build": "ng build",
"build:prod": "ng build --configuration production",
"watch": "ng build --watch --configuration development",
"tauri": "tauri",
"tauri:dev": "bun run tauri dev",
"tauri:build": "bun run tauri build",
"tauri:build:debug": "bun run tauri build --debug",
"tauri:build:fast": "bun run tauri build --no-bundle",
"tauri:build:android": "bun run tauri android build",
"build:frontend:check": "ng build --configuration production --output-hashing none",
"build:optimized": "bun run build:prod && bun run tauri:build",
"build:android:optimized": "bun run build:prod && bun run tauri:build:android",
"build:smart": "./scripts/build-optimized.sh build desktop release",
"build:smart:debug": "./scripts/build-optimized.sh build desktop debug",
"build:smart:android": "./scripts/build-optimized.sh build android release",
"build:clean": "./scripts/build-optimized.sh clean",
"lint": "eslint src/ --ext .ts,.html",
"format": "prettier --write \"src/**/*.{ts,html,css}\""
},
"private": true,
"dependencies": {
"@angular/animations": "^22.0.6",
"@angular/common": "^22.0.6",
"@angular/compiler": "^22.0.6",
"@angular/core": "^22.0.6",
"@angular/elements": "^22.0.8",
"@angular/forms": "^22.0.6",
"@angular/platform-browser": "^22.0.6",
"@angular/router": "^22.0.6",
"@tauri-apps/api": "~2.10.0",
"@tauri-apps/plugin-opener": "^2",
"@tauri-front/shared": "file:../tauri-front-shared/projects/shared/dist",
"lit": "^3.0.0",
"rxjs": "~7.8.2",
"tslib": "^2.8.1",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-eslint/builder": "^21.2.0",
"@angular-eslint/eslint-plugin": "^21.2.0",
"@angular-eslint/eslint-plugin-template": "^21.2.0",
"@angular-eslint/schematics": "^21.2.0",
"@angular-eslint/template-parser": "^21.2.0",
"@angular/build": "^22.0.6",
"@angular/cli": "^22.0.6",
"@angular/compiler-cli": "^22.0.6",
"@eslint/js": "^9.39.2",
"@tailwindcss/postcss": "^4.3.3",
"@tauri-apps/cli": "~2.10.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"globals": "^17.2.0",
"prettier": "^3.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.54.0"
}
}