-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.01 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
{
"name": "utcp-docs",
"version": "1.0.0",
"description": "MCP server providing UTCP documentation, validation, and code generation",
"type": "module",
"main": "dist/index.js",
"bin": {
"utcp-docs": "./dist/index.js"
},
"scripts": {
"build": "tsc && mkdir -p dist/schemas dist/content && cp src/schemas/*.json dist/schemas/ && cp src/content/*.txt dist/content/ && chmod +x dist/index.js",
"dev": "tsx src/index.ts",
"watch": "tsc --watch",
"test": "vitest",
"test:watch": "vitest --watch",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"utcp",
"documentation",
"ai-tools",
"model-context-protocol"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"ajv": "^8.12.0",
"ajv-formats": "^3.0.1",
"openai": "^6.9.1"
},
"devDependencies": {
"@types/node": "^20.10.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
},
"files": [
"dist",
"llms.txt"
]
}