-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.81 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
57
58
59
60
61
62
63
64
65
66
{
"name": "zig-mcp-server",
"version": "0.2.0",
"description": "Modern Zig AI development assistant - optimized for Zig 0.15.2+ with comprehensive build system support",
"private": true,
"type": "module",
"bin": {
"zig-mcp-server": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json}\"",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"dev": "npm run build && npm run inspector"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"axios": "^1.7.9"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"keywords": [
"zig",
"mcp",
"model-context-protocol",
"ai-assistant",
"development-tools",
"build-system"
],
"author": "openSVM",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/openSVM/zig-mcp-server.git"
},
"bugs": {
"url": "https://github.com/openSVM/zig-mcp-server/issues"
},
"homepage": "https://github.com/openSVM/zig-mcp-server#readme"
}