-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.79 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.79 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
87
{
"name": "@j0hanz/cortex-mcp",
"version": "1.11.0",
"mcpName": "io.github.j0hanz/cortex-mcp",
"author": "Johanz",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/j0hanz/cortex-mcp.git"
},
"homepage": "https://github.com/j0hanz/cortex-mcp#readme",
"description": "Multi-level reasoning MCP server with configurable depth levels",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"model-context-protocol",
"mcp",
"reasoning",
"multi-level",
"server",
"thought-process",
"thinking"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"cortex-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"clean": "node scripts/tasks.mjs clean",
"build": "node scripts/tasks.mjs build",
"copy:assets": "node scripts/tasks.mjs copy:assets",
"prepare": "npm run build",
"dev": "tsc --watch --preserveWatchOutput",
"dev:run": "node --env-file=.env --watch dist/index.js",
"start": "node dist/index.js",
"format": "prettier --write .",
"type-check": "node scripts/tasks.mjs type-check",
"type-check:src": "node node_modules/typescript/bin/tsc -p tsconfig.json --noEmit",
"type-check:tests": "node node_modules/typescript/bin/tsc -p tsconfig.test.json --noEmit",
"type-check:diagnostics": "tsc --noEmit --extendedDiagnostics",
"type-check:trace": "node -e \"require('fs').rmSync('.ts-trace',{recursive:true,force:true})\" && tsc --noEmit --generateTrace .ts-trace",
"lint": "eslint .",
"lint:tests": "eslint src/__tests__",
"lint:fix": "eslint . --fix",
"test": "node scripts/tasks.mjs test",
"test:dist": "node scripts/tasks.mjs test:dist",
"test:fast": "node --test --import tsx/esm src/__tests__/**/*.test.ts node-tests/**/*.test.ts",
"test:coverage": "node scripts/tasks.mjs test --coverage",
"knip": "knip",
"knip:fix": "knip --fix",
"inspector": "npm run build && npx -y @modelcontextprotocol/inspector node dist/index.js",
"prepublishOnly": "npm run lint && npm run type-check && npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.2",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/node": "^24",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-de-morgan": "^2.1.1",
"eslint-plugin-depend": "^1.5.0",
"eslint-plugin-unused-imports": "^4.4.1",
"knip": "^5.85.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"engines": {
"node": ">=24"
}
}