-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.55 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.55 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
{
"name": "justoneapi-mcp",
"version": "1.0.1",
"type": "module",
"description": "MCP server for JustOneAPI - expose API endpoints to AI assistants via Model Context Protocol",
"main": "dist/index.js",
"bin": {
"justoneapi-mcp": "dist/index.js"
},
"scripts": {
"dev": "node --loader ts-node/esm src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"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": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"dotenv": "^17.2.3",
"zod": "^4.3.4"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.7.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}