-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.67 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.67 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": "@jsonbored/opennextjs-mcp",
"version": "0.1.0",
"description": "MCP server for OpenNext.js Cloudflare projects - enables AI tools to interact with OpenNext.js projects",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"opennextjs-mcp": "./dist/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"type-check": "tsc --noEmit",
"lint": "eslint src --ignore-pattern '**/__tests__/**' --ignore-pattern '**/*.test.ts' --ignore-pattern '**/*.spec.ts'",
"format": "prettier --write \"src/**/*.{ts,json}\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "pnpm run build && pnpm run test"
},
"dependencies": {
"@jsonbored/opennextjs-cli": "^0.1.0",
"@modelcontextprotocol/sdk": "^1.25.2",
"zod": "^4.3.4"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.18.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"keywords": [
"mcp",
"model-context-protocol",
"opennextjs",
"opennext",
"nextjs",
"cloudflare",
"workers",
"ai",
"claude"
],
"author": "JSONbored",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JSONbored/opennextjs-cli",
"directory": "packages/opennextjs-mcp"
},
"engines": {
"node": ">=18.0.0"
}
}