-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.95 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.95 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
{
"name": "crate",
"version": "0.2.8",
"description": "Cross-platform DJ library manager with music discovery, track analysis, and USB export",
"type": "module",
"scripts": {
"dev": "cross-env CRATE_ENV=development tauri dev --config src-tauri/tauri.dev.conf.json -- --release --features devtools",
"dev:vite": "vite dev",
"build": "yarn build:production",
"build:production": "cross-env CRATE_ENV=production tauri build --config src-tauri/tauri.prod.conf.json",
"build:staging": "cross-env CRATE_ENV=staging tauri build --config src-tauri/tauri.staging.conf.json -- --features devtools",
"build:vite": "vite build",
"check": "yarn check:cargo && yarn check:svelte",
"check:cargo": "cd src-tauri/ && cargo check --release",
"check:svelte": "svelte-kit sync && svelte-check --tsconfig tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig tsconfig.json --watch",
"format": "yarn format:fix && yarn format:rust",
"format:check": "prettier --check \"**/*.{ts,js,json,svelte,css}\"",
"format:fix": "prettier --write \"**/*.{ts,js,json,svelte,css}\"",
"format:rust": "cd src-tauri/ && cargo +nightly fmt",
"lint": "yarn lint:fix && yarn lint:rust",
"lint:check": "eslint --cache --debug \"**/*.{ts,js,svelte}\"",
"lint:fix": "eslint --cache --fix \"**/*.{ts,js,svelte}\"",
"lint:rust": "cd src-tauri/ && cargo +nightly clippy --release",
"pre-commit": "lint-staged",
"prepare": "yarn prepare:husky",
"prepare:husky": "husky install",
"preview": "vite preview",
"tauri": "tauri",
"bump": "node scripts/version.js",
"changelog:prepare": "node scripts/changelog.js prepare",
"changelog:graduate": "node scripts/changelog.js graduate"
},
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"@tanstack/virtual-core": "3.13.21",
"@tauri-apps/api": "2.10.1",
"@tauri-apps/plugin-clipboard-manager": "2.3.2",
"@tauri-apps/plugin-dialog": "2.6.0",
"@tauri-apps/plugin-fs": "2.4.5",
"@tauri-apps/plugin-opener": "2.5.3",
"@tauri-apps/plugin-process": "2.3.1",
"@tauri-apps/plugin-updater": "2.10.0",
"svelte-i18n": "4.0.1"
},
"devDependencies": {
"@eslint/compat": "2.0.0",
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.2",
"@sveltejs/adapter-static": "3.0.10",
"@sveltejs/kit": "2.49.2",
"@sveltejs/vite-plugin-svelte": "6.2.1",
"@tailwindcss/vite": "4.1.18",
"@tauri-apps/cli": "2",
"@types/node": "22.19.3",
"cross-env": "10.1.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-n": "17.23.1",
"eslint-plugin-svelte": "3.13.1",
"globals": "16.5.0",
"husky": "8.0.3",
"lint-staged": "16.2.7",
"prettier": "3.7.4",
"prettier-plugin-svelte": "3.4.1",
"prettier-plugin-tailwindcss": "0.7.2",
"svelte": "5.46.0",
"svelte-check": "4.3.4",
"tailwindcss": "4.1.18",
"typescript": "5.9.3",
"typescript-eslint": "8.50.0",
"vite": "7.3.0"
},
"lint-staged": {
"**/*.{ts,js,svelte,json,css}": "yarn format:fix",
"**/*.{ts,js,svelte}": "yarn lint:fix"
}
}