-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.28 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
{
"name": "ra",
"version": "1.0.0",
"description": "TypeScript project demonstrating SDK usage",
"license": "MIT",
"type": "module",
"bin": {
"ra": "./src/cli.ts"
},
"scripts": {
"check": "tsc --noEmit",
"dev": "bun --watch run src/cli.ts",
"format": "biome format --write .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"prepare": "simple-git-hooks",
"serve": "bun run src/http-server.ts",
"start": "bun run src/cli.ts",
"test": "bun test"
},
"simple-git-hooks": {
"pre-commit": "bunx lint-staged",
"commit-msg": "bunx commitlint --edit $1"
},
"dependencies": {
"@hono/node-server": "^1.19.12",
"@mariozechner/pi-agent-core": "^0.65.0",
"@mariozechner/pi-coding-agent": "^0.65.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"hono": "^4.12.11"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@cspell/eslint-plugin": "^10.0.0",
"@secretlint/secretlint-rule-preset-recommend": "^11.4.1",
"bun-types": "^1.3.11",
"cspell": "^10.0.0",
"lint-staged": "^15.5.0",
"markdownlint-cli2": "^0.22.0",
"secretlint": "^11.4.1",
"simple-git-hooks": "^2.12.1",
"typescript": "^6.0.2"
}
}