-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
25 lines (25 loc) · 1.01 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
{
"name": "kftray",
"version": "0.15.7",
"private": true,
"scripts": {
"build": "pnpm --filter @kftray/ui run build",
"check": "pnpm --filter @kftray/ui run check",
"dev": "pnpm --filter @kftray/ui run dev",
"format": "pnpm run format:front && pnpm run format:back",
"format:back": "cargo +nightly fmt",
"format:front": "pnpm --filter @kftray/ui run format",
"generate-icons": "cargo run --bin generate_icons",
"lint": "pnpm --filter @kftray/ui run lint && pnpm run lint:back",
"lint:back": "cargo clippy --workspace --all-targets --all-features",
"lint:front": "pnpm --filter @kftray/ui run lint",
"test:server": "bash hacks/test_proxy.sh",
"precommit": "pnpm run format && pnpm run lint",
"release:minor": "cargo run --bin bump_version minor && git add . && git commit -m 'chore: release new version'",
"release:patch": "cargo run --bin bump_version patch && git add . && git commit -m 'chore: release new version'",
"tauri": "tauri"
},
"devDependencies": {
"@tauri-apps/cli": "^1.6.2"
}
}