-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.02 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.02 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
{
"name": "grove",
"version": "0.1.0",
"type": "module",
"bin": {
"grove": ".bin/grove"
},
"scripts": {
"test": "bun test",
"build": "mkdir -p .bin && rm -f .bin/grove && bun build --compile src/cli.ts --outfile .bin/grove",
"format": "biome check --write --config-path ./biome.json .",
"format:check": "biome check --config-path ./biome.json .",
"format:ci": "biome ci --config-path ./biome.json .",
"lint:no-sync": "bun run scripts/check-no-sync.ts",
"typecheck": "tsc --noEmit",
"prepare": "bun run build && husky"
},
"lint-staged": {
"*": "biome check --write --config-path ./biome.json --no-errors-on-unmatched --files-ignore-unknown=true"
},
"devDependencies": {
"@biomejs/biome": "^2.4.5",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@types/bun": "latest",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"typescript": "^5.9.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"zod": "^4.3.6"
}
}