-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.04 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.04 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
{
"name": "pixelaw-docs-mcp",
"version": "0.0.1",
"description": "MCP server for PixeLAW app development guidance",
"main": "dist/index.js",
"type": "module",
"bin": {
"pixelaw-docs-mcp": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && npm run copy-guides",
"copy-guides": "mkdir -p dist/guides && cp -r src/guides/* dist/guides/",
"start": "node dist/index.js",
"inspect": "set DANGEROUSLY_OMIT_AUTH=true && npx @modelcontextprotocol/inspector node dist/index.js",
"dev": "tsc --watch"
},
"keywords": [
"mcp",
"model-context-protocol",
"pixelaw",
"dojo",
"cairo",
"starknet",
"blockchain",
"game-development",
"documentation"
],
"author": "PixeLAW Contributors",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.3",
"zod": "^4.1.13"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.3.0",
"@modelcontextprotocol/inspector": "^0.17.5"
}
}