forked from mrsimpson/responsible-vibe-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.08 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.08 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
88
89
90
91
92
93
94
95
96
{
"name": "responsible-vibe-mcp",
"version": "4.1.3",
"description": "A Model Context Protocol server that acts as an intelligent conversation state manager and development guide for LLMs, featuring comprehensive long-term memory with persistent project artifacts",
"type": "module",
"main": "packages/cli/dist/index.js",
"bin": {
"responsible-vibe-mcp": "packages/cli/dist/index.js"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.14.2",
"files": [
"packages/*/dist/**/*",
"packages/*/package.json",
"packages/docs/.vitepress/dist/**/*",
"resources/**/*",
"README.md",
"LOGGING.md",
"CUSTOM_STATE_MACHINE.md",
"package.json",
".npmrc"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mrsimpson/vibe-feature-mcp.git"
},
"scripts": {
"build": "turbo run build",
"build:visualizer": "cd packages/visualizer && npm install && npm run build",
"pack:dist": "pnpm pack",
"inspector": "npx @modelcontextprotocol/inspector",
"dev": "turbo run dev --filter=@codemcp/workflows-core --filter=@codemcp/workflows",
"clean": "turbo run clean:build",
"prepublishOnly": "npm run build",
"lint-staged": "npx lint-staged",
"test": "turbo run test --continue",
"test:compact": "turbo run test --continue 2>&1 | grep -E '(^•|FAIL |Test Files|Tests |Failed:|Tasks:|Cached:|ERROR run)'",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:manual": "npm run build && npm run inspector",
"test:mcp-contract": "[ -f .vibe/state-machine.yml ] || [ -f .vibe/state-machine.yaml ] && echo '⚠️ Skipping MCP contract tests: Custom state machine detected' || vitest run --run test/e2e/consolidated/mcp-contract.test.ts",
"generate-system-prompt": "vite-node src/scripts/generate-system-prompt.ts",
"lint": "pnpm -r exec oxlint .",
"lint:fix": "pnpm -r exec oxlint --fix .",
"format:check": "pnpm -r exec prettier --check .",
"format": "pnpm -r exec prettier --write .",
"prepare": "husky"
},
"dependencies": {
"@codemcp/workflows-core": "workspace:*",
"@modelcontextprotocol/sdk": "1.17.5",
"@sqlite.org/sqlite-wasm": "3.50.4-build1",
"@types/js-yaml": "4.0.9",
"js-yaml": "4.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "0.16.8",
"@tsconfig/node22": "22.0.2",
"@tsconfig/strictest": "2.0.6",
"@types/jsdom": "27.0.0",
"@types/node": "^18.19.130",
"glob": "11.0.3",
"husky": "9.1.7",
"jsdom": "27.0.1",
"lint-staged": "16.1.6",
"oxlint": "1.16.0",
"prettier": "3.6.2",
"tsx": "4.20.5",
"turbo": "^2.5.8",
"typescript": "^5.9.3",
"vitepress": "^1.6.4",
"vitest": "4.0.5"
},
"lint-staged": {
"*.{ts,js,mts,cts,tsx,jsx}": [
"prettier --write",
"oxlint --fix"
],
"*.{json,md,yml,yaml,vue}": [
"prettier --write"
]
},
"keywords": [
"mcp",
"model-context-protocol",
"development",
"state-management",
"llm"
],
"author": "Oliver Jägle",
"license": "MIT"
}