-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.49 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.49 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
{
"name": "bakul-mcp",
"version": "1.0.0",
"description": "MCP server for Bakul AI API wrapper",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:run": "vitest run",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"type-check": "tsc --noEmit",
"ci": "pnpm type-check && pnpm lint && pnpm test:run"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.8.1",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"hono": "^4.12.19",
"zod": "^4.4.3",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^25.9.0",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"@vitest/coverage-v8": "^4.1.6",
"@vitest/ui": "^4.1.6",
"eslint": "^9.39.2",
"prettier": "^3.8.3",
"tsx": "^4.22.2",
"typescript": "^5.9.3",
"vite": "^7.3.2",
"vitest": "^4.1.6"
},
"pnpm": {
"overrides": {
"js-yaml": ">=4.1.1",
"body-parser": ">=2.2.1",
"hono": ">=4.11.4",
"minimatch": ">=3.1.4",
"ajv": "^6.14.0",
"brace-expansion": ">=1.1.13"
}
}
}