-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.22 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
{
"name": "@kosli/mcp-server",
"version": "0.5.0",
"description": "Model Context Protocol server for the Kosli API",
"type": "module",
"bin": {
"kosli-mcp": "dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"generate-catalog": "tsx scripts/generate-catalog.ts",
"sync-version": "node scripts/sync-version.mjs",
"version": "npm run sync-version && git add src/version.ts package.json package-lock.json",
"pack:mcpb": "bash scripts/pack-mcpb.sh",
"prepublishOnly": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kosli-dev/mcp-server.git"
},
"homepage": "https://github.com/kosli-dev/mcp-server#readme",
"bugs": {
"url": "https://github.com/kosli-dev/mcp-server/issues"
},
"license": "MIT",
"keywords": [
"kosli",
"mcp",
"model-context-protocol",
"claude"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0"
},
"devDependencies": {
"@types/node": "^22.12.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.1.0"
}
}