-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.5 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
{
"name": "doc-generator",
"version": "1.0.0",
"description": "A MCP server for template-based documentation generation.",
"type": "module",
"main": "index.js",
"scripts": {
"compile": "tsc && cp -r public build/",
"clean": "rm -rf dist build",
"build": "npm run clean && npm run compile && mkdir dist && cp -r build/src build/public dist/ && rm -r build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:single": "jest --testNamePattern",
"lint": "eslint **/**.ts",
"lint:fix": "eslint ./src ./tests --fix",
"format": "prettier --write \"**/**/*.ts\"",
"check": "npm run lint && npm run test",
"debug": "npm run build && npx @modelcontextprotocol/inspector node ./dist/src/index.js",
"dev": "nodemon --watch src --watch public --ext ts,md --exec \"npm run debug\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.25.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"eslint": "^9.25.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"ts-jest": "^29.3.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.1"
}
}