-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.46 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
{
"name": "basalt",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"check": "pnpm run lint && pnpm run check:cycles && pnpm run typecheck && pnpm run build && pnpm run test && pnpm run format:check && pnpm run knip",
"check:cycles": "oxlint --config oxlint.cycles.json --no-error-on-unmatched-pattern .",
"dev": "turbo run dev",
"format": "prettier --write . --ignore-unknown",
"format:check": "prettier --check . --ignore-unknown",
"knip": "knip",
"knip:ci": "knip --no-exit-code --no-progress",
"lint": "oxlint --deny-warnings --no-error-on-unmatched-pattern",
"lint:fix": "oxlint --fix --no-error-on-unmatched-pattern",
"prepare": "node -e \"if(process.env.CI||process.env.LEFTHOOK==='0'){process.exit(0)}try{require('node:fs').accessSync('.git')}catch{process.exit(0)}require('node:child_process').execSync('pnpm exec lefthook install',{stdio:'inherit'})\"",
"test": "turbo run test",
"test:watch": "vitest",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@types/node": "^24.13.2",
"@vitest/coverage-v8": "^3.2.4",
"knip": "^6.24.0",
"lefthook": "^2.1.9",
"oxlint": "^1.72.0",
"prettier": "^3.9.4",
"prettier-plugin-packagejson": "^3.0.2",
"turbo": "^2.10.0",
"typescript": "~5.9.3",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@11.1.2",
"engines": {
"node": ">=24.15.0 <25",
"pnpm": ">=11.1.2 <12"
}
}