forked from arben-adm/mcp-sequential-thinking
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.48 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.48 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
{
"name": "mcp-sequential-thinking-ts",
"version": "0.3.0",
"type": "module",
"private": false,
"description": "A Sequential Thinking TypeScript MCP Server for advanced problem solving",
"keywords": [
"mcp",
"ai",
"problem-solving",
"sequential-thinking",
"typescript"
],
"author": "Original Python Version by Arben Ademi <arben.ademi@tuta.io> (https://github.com/arben-adm) | TypeScript Version by Axefield (https://github.com/axefield)",
"license": "MIT",
"scripts": {
"dev": "tsx bin/run-server.ts",
"build": "tsup src --format esm,cjs --dts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write ."
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"pino": "^9.0.0",
"pino-pretty": "^11.0.0",
"proper-lockfile": "^4.1.2",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/proper-lockfile": "^4.1.4",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"prettier": "^3.2.0",
"tsup": "^8.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"vitest": "^1.2.0"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist",
"bin"
],
"bin": {
"mcp-sequential-thinking": "./bin/run-server.js"
}
}