-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 911 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 911 Bytes
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": "grove-workspace",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r build",
"test": "vitest run",
"test:timed": "node scripts/test-timed.mjs",
"test:watch": "vitest",
"lint": "oxlint packages/*/src packages/*/test scripts --deny-warnings",
"format": "oxfmt --write packages/*/src packages/*/test scripts",
"typecheck": "tsgo -p tsconfig.test.json",
"check": "pnpm lint && pnpm build && pnpm typecheck && pnpm test",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@types/node": "^25.9.3",
"@types/proper-lockfile": "^4.1.4",
"@typescript/native-preview": "^7.0.0-dev",
"husky": "^9.1.7",
"oxfmt": "^0.55.0",
"oxlint": "^1.70.0",
"vitest": "^4.1.9"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.5.3"
}