-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.45 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.45 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
{
"name": "@return-0/mcp-server",
"version": "1.0.2",
"description": "Local MCP server for return0",
"main": "dist/index.js",
"bin": {
"return0-mcp-server": "dist/index.js"
},
"files": [
"dist/",
"LICENSE"
],
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"postbuild": "node add-shebang.js",
"dev": "tsx index.ts",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build",
"test:publish": "node test-publish.js",
"version:patch": "node deploy.js patch",
"version:minor": "node deploy.js minor",
"version:major": "node deploy.js major",
"deploy": "node deploy.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"reflect-metadata": "^0.2.1",
"rxjs": "^7.8.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/nock": "^10.0.3",
"@types/node": "^20.0.0",
"@types/uuid": "^9.0.7",
"jest": "^30.2.0",
"nock": "^14.0.10",
"ts-jest": "^29.4.5",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"variable-extraction",
"debugging",
"return0"
],
"author": "return0",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://getreturn0.com",
"repository": {
"type": "git",
"url": "https://github.com/getreturn0/mcp.git"
}
}