-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.22 KB
/
package.json
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
{
"name": "claude-mcp",
"version": "0.1.0",
"description": "MCP server to host tools extending Claude's capabilities",
"type": "module",
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun --watch src/index.ts",
"lint": "bun eslint src",
"test": "bun test",
"build": "bun build ./src/index.ts --target bun --outdir ./dist",
"typecheck": "tsc --noEmit",
"format": "prettier --write 'src/**/*.{ts,tsx,js,jsx}'",
"clean": "rm -rf dist docs/*/*/processed",
"docadd": "bun run src/tools/docs-fetcher/cli.ts"
},
"dependencies": {
"@hono/node-server": "^1.2.0",
"@hono/zod-validator": "^0.1.8",
"@inquirer/prompts": "^3.0.0",
"@xenova/transformers": "^2.17.2",
"cheerio": "^1.0.0-rc.12",
"commander": "^11.0.0",
"hnswlib-node": "^3.0.0",
"hono": "^3.10.2",
"marked": "^9.1.5",
"node-fetch": "^3.3.2",
"puppeteer": "19.9",
"turndown": "^7.1.2",
"uuid": "^11.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"bun-types": "latest",
"typescript": "^5.2.2",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0",
"prettier": "^3.0.3",
"@types/node": "^20.9.0"
}
}