-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.85 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
{
"name": "@bbx-audio/crate",
"version": "0.2.9",
"description": "Cross-platform DJ library manager with music discovery, track analysis, and USB export",
"type": "module",
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"dev": "cross-env CRATE_ENV=development tauri dev --config src-tauri/tauri.dev.conf.json -- --release --features devtools,desktop",
"dev:vite": "yarn workspace @bbx-audio/crate-desktop dev:vite",
"dev:ios": "tauri ios dev --host -f mobile",
"dev:android": "tauri android dev -f mobile",
"build": "yarn build:production",
"build:production": "cross-env CRATE_ENV=production tauri build --config src-tauri/tauri.prod.conf.json -- --features desktop",
"build:staging": "cross-env CRATE_ENV=staging tauri build --config src-tauri/tauri.staging.conf.json -- --features devtools,desktop",
"build:vite": "yarn workspace @bbx-audio/crate-desktop build:vite",
"build:ios": "tauri ios build -f mobile",
"build:android": "tauri android build -f mobile",
"check": "yarn check:cargo && yarn check:svelte",
"check:cargo": "cd src-tauri/ && cargo check --release --features desktop",
"check:svelte": "yarn workspace @bbx-audio/crate-desktop check:svelte",
"check:svelte:mobile": "yarn workspace @bbx-audio/crate-mobile check:svelte",
"check:watch": "yarn workspace @bbx-audio/crate-desktop check: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 --features desktop",
"pre-commit": "lint-staged",
"prepare": "yarn prepare:husky",
"prepare:husky": "husky install",
"preview": "yarn workspace @bbx-audio/crate-desktop 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",
"devDependencies": {
"@eslint/compat": "2.0.0",
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.2",
"@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",
"typescript": "5.9.3",
"typescript-eslint": "8.50.0"
},
"lint-staged": {
"**/*.{ts,js,svelte,json,css}": "yarn format:fix",
"**/*.{ts,js,svelte}": "yarn lint:fix"
}
}