-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.81 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.81 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
101
102
103
{
"name": "rclone-manager",
"version": "0.2.4",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"tauri": "tauri",
"dev:portable": "npm run tauri dev -- --features portable",
"dev:flatpak": "npm run tauri dev -- --features flatpak",
"dev:headless": "npm run tauri dev -- --config src-tauri/tauri.conf.headless.json --features web-server,tray -- --no-default-features",
"build:portable": "npm run tauri build -- --features portable --no-bundle",
"build:flatpak": "npm run tauri build -- --bundles deb --config '{\"bundle\":{\"createUpdaterArtifacts\":false}}' --features flatpak",
"build:headless": "npm run tauri build -- --config src-tauri/tauri.conf.headless.json --features web-server,tray -- --no-default-features",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"format": "prettier --write \"src/**/*.{ts,html,scss,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,html,scss,json}\"",
"lint:rust": "cd src-tauri && cargo clippy -- -D warnings",
"format:rust": "cd src-tauri && cargo fmt",
"format:rust:check": "cd src-tauri && cargo fmt -- --check",
"lint:all": "npm run lint && npm run format:check && npm run lint:rust && npm run format:rust:check",
"fix:svg": "node scripts/fix-svg-ids.cjs",
"fix:all": "npm run fix:svg && npm run lint:fix && npm run format && npm run format:rust",
"sync:flags": "node scripts/update-flags.cjs",
"sync:providers": "node scripts/update-providers.cjs",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,html}": [
"eslint --fix",
"prettier --write"
],
"*.{scss,json}": [
"prettier --write"
],
"src-tauri/src/**/*.rs": [
"sh -c 'cd src-tauri && cargo fmt'",
"sh -c 'cd src-tauri && cargo clippy -- -D warnings'"
]
},
"private": true,
"dependencies": {
"@angular/cdk": "^21.2.2",
"@angular/common": "^21.2.4",
"@angular/compiler": "^21.2.4",
"@angular/core": "^21.2.4",
"@angular/forms": "^21.2.4",
"@angular/material": "^21.2.2",
"@angular/platform-browser": "^21.2.4",
"@angular/platform-browser-dynamic": "^21.2.4",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-sass": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/language": "^6.12.2",
"@codemirror/legacy-modes": "^6.5.2",
"@codemirror/state": "^6.6.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.40.0",
"@ngx-translate/core": "^17.0.0",
"@ngx-translate/http-loader": "^17.0.0",
"@tauri-apps/api": "~2.10.1",
"@tauri-apps/plugin-os": "^2.3.2",
"codemirror": "^6.0.2",
"cronstrue": "^3.13.0",
"marked": "^17.0.4",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "^21.2.2",
"@angular/cli": "^21.2.1",
"@angular/compiler-cli": "^21.2.1",
"@eslint/js": "^10.0.1",
"@tauri-apps/cli": "^2.10.1",
"@types/canvas-confetti": "^1.9.0",
"@types/jasmine": "~6.0.0",
"angular-eslint": "21.3.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"jasmine-core": "~6.1.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.2.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.57.0"
}
}