-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.87 KB
/
package.json
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": "@octomind/octomind-mcp",
"version": "1.0.10",
"description": "an mcp server for the octomind platform",
"main": "./dist/index.js",
"packageManager": "[email protected]+sha512.2d92c86b7928dc8284f53494fb4201f983da65f0fb4f0d40baafa5cf628fa31dae3e5968f12466f17df7e97310e30f343a648baea1b9b350685dafafffdf5808",
"engines": {
"node": ">=20.0.0"
},
"bin": {
"octomind": "./dist/index.js"
},
"scripts": {
"version": "npx genversion -des src/version.ts",
"lint": "npx genversion -des src/version.ts && eslint src/**/*.ts tests/**/*.ts --max-warnings=0",
"build": "npx genversion -des src/version.ts && tsc --project tsconfig.build.json",
"octomind-mcp": "tsx src/index.ts",
"test": "npx genversion -des src/version.ts && jest",
"test:watch": "npx genversion -e src/version.ts && jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Octomind-dev/mcp-octomind.git"
},
"keywords": [
"mcp",
"octomind"
],
"author": "Stefan Rinke",
"license": "ISC",
"bugs": {
"url": "https://github.com/Octomind-dev/mcp-octomind/issues"
},
"homepage": "https://github.com/Octomind-dev/mcp-octomind#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"axios": "^1.8.4",
"pino": "^9.6.0",
"uuid": "^11.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^22.13.5",
"@typescript-eslint/parser": "^8.25.0",
"eslint": "8.57.1",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^4.0.0",
"eslint-plugin-github": "^5.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.5.0",
"prettier": "^3.0.1",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.0.4"
}
}