-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.01 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
{
"name": "trachyte-monorepo",
"private": true,
"type": "module",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --max-warnings 0",
"typecheck": "pnpm -r --workspace-concurrency=1 run typecheck",
"test": "pnpm -r --workspace-concurrency=1 run test",
"clean": "pnpm exec -- rimraf dist target '**/dist' '**/target' '**/.tsbuildinfo' '**/vite.config.d.ts*'",
"rust:check": "cargo check --workspace && (cd apps/desktop/src-tauri && cargo check)",
"rust:fmt": "cargo fmt --all -- --check",
"rust:lint": "cargo clippy --workspace --all-targets -- -D warnings"
},
"devDependencies": {
"eslint": "^9.39.5",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.7.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.8.1",
"rimraf": "^6",
"typescript": "catalog:",
"typescript-eslint": "^8.64.0"
},
"engines": {
"node": ">=24",
"pnpm": ">=9"
}
}