-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.76 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "justoneapi-mcp",
"version": "2.0.0",
"type": "module",
"description": "MCP server for JustOneAPI - discover and call JustOneAPI endpoints via Model Context Protocol",
"main": "dist/src/index.js",
"bin": {
"justoneapi-mcp": "dist/src/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"dev:stdio": "tsx src/index.ts",
"dev:worker": "npx wrangler dev",
"deploy:worker": "npm run verify:catalog && npx wrangler deploy",
"build:catalog": "tsx scripts/build-catalog.ts",
"verify:catalog": "tsx scripts/verify-bundled-catalog.ts",
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"typecheck": "tsc --noEmit",
"build": "npm run build:cli",
"build:cli": "npm run clean && tsc -p tsconfig.cli.json",
"build:worker": "wrangler deploy --dry-run --outdir .wrangler/build",
"build:all": "npm run build:cli && npm run build:worker",
"verify:package": "tsx scripts/verify-package-layout.ts",
"validate:offline": "npm run format:check && npm run lint && npm run typecheck && npm test",
"start": "node dist/src/index.js",
"test": "vitest run",
"lint": "eslint \"{src,scripts,tests}/**/*.ts\"",
"lint:fix": "eslint \"{src,scripts,tests}/**/*.ts\" --fix",
"format": "prettier --write \"{src,scripts,tests}/**/*.ts\" \"*.md\"",
"format:check": "prettier --check \"{src,scripts,tests}/**/*.ts\" \"*.md\"",
"prepublishOnly": "npm run validate:offline && npm run build:cli && npm run verify:package"
},
"keywords": [
"mcp",
"model-context-protocol",
"justoneapi",
"ai",
"agent",
"claude",
"cursor"
],
"author": "Just One API <support@justoneapi.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/justoneapi/justoneapi-mcp.git"
},
"homepage": "https://github.com/justoneapi/justoneapi-mcp#readme",
"bugs": {
"url": "https://github.com/justoneapi/justoneapi-mcp/issues"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist",
"README.md",
"README.zh-CN.md",
"RELEASE.md",
"TOOLS.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/server": "2.0.0",
"dotenv": "^17.2.3",
"zod": "^4.3.4"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20260623.1",
"@modelcontextprotocol/client": "2.0.0",
"@modelcontextprotocol/sdk": "1.30.0",
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"agents": "0.21.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"jose": "6.2.9",
"prettier": "^3.7.4",
"ts-node": "^10.9.2",
"tsx": "^4.22.4",
"typescript": "^5.9.3",
"vitest": "^4.1.9",
"wrangler": "^4.104.0"
}
}