-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.77 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.77 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "taskpilot",
"version": "0.1.0",
"description": "A Model Context Protocol server",
"private": true,
"type": "module",
"bin": {
"taskpilot": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "npm run build:server && npm run build:ui",
"build:server": "rsbuild build",
"build:ui": "cd ui && bun run build",
"dev": "concurrently --names=\"MCP,UI\" --prefix-colors=\"blue,green\" \"npm run dev:server\" \"npm run dev:ui\"",
"dev:server": "npx tsx --watch src/index.ts",
"dev:ui": "cd ui && bun run dev",
"serve": "npm run build && node build/index.js --port=8989",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:tool": "npx tsx src/cli.ts",
"lint": "npm run lint:server && npm run lint:ui",
"lint:server": "tsc --noEmit",
"lint:ui": "cd ui && tsc --noEmit",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.0",
"@types/uuid": "^10.0.0",
"better-sqlite3": "^12.2.0",
"drizzle-orm": "^0.44.2",
"express": "^5.1.0",
"http-proxy": "^1.18.1",
"sqlite3": "^5.1.7",
"uuid": "^11.1.0",
"zod": "^3.25.74",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@rsbuild/core": "^1.4.5",
"@rsbuild/plugin-react": "^1.3.4",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.3",
"@types/http-proxy": "^1.17.16",
"@types/node": "^20.19.4",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"concurrently": "^9.2.0",
"drizzle-kit": "^0.31.4",
"tsx": "^4.20.3",
"typescript": "^5.3.3",
"vitest": "^3.2.4"
}
}