-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 908 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 908 Bytes
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
{
"name": "@erickxavier/nojs-mcp",
"version": "1.11.0",
"description": "MCP server providing AI assistants with deep knowledge of the NoJS framework",
"main": "dist/index.js",
"bin": {
"nojs-mcp": "dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"prepare": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"extract": "node dist/scripts/extract-knowledge.js"
},
"keywords": [
"nojs",
"mcp",
"model-context-protocol",
"ai",
"framework"
],
"author": "Erick Xavier",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ErickXavier/nojs-mcp.git"
},
"files": [
"dist/",
"knowledge/"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/node": "^22.15.21",
"typescript": "^5.8.3"
}
}