-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.1 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.1 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
97
{
"name": "@codemcp/workflows",
"version": "6.13.0",
"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": {
"ade-workflows": "packages/cli/dist/index.js"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@10.32.1",
"files": [
"packages/*/dist/**/*",
"packages/*/package.json",
"packages/*/resources/**/*",
"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 && node scripts/generate-skill.js",
"build:visualizer": "cd packages/visualizer && pnpm install && pnpm run build",
"pack:dist": "pnpm pack",
"inspector": "npx @modelcontextprotocol/inspector",
"dev": "turbo run dev --filter=@codemcp/workflows-core --filter=@codemcp/workflows-server",
"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": {
"@modelcontextprotocol/sdk": "1.25.3"
},
"devDependencies": {
"@codemcp/workflows-core": "workspace:*",
"@modelcontextprotocol/inspector": "0.19.0",
"@oxlint/linux-x64-gnu": "^1.43.0",
"@tsconfig/node24": "24.0.4",
"@tsconfig/strictest": "2.0.8",
"@types/jsdom": "28.0.1",
"@types/node": "^22.0.0",
"glob": "13.0.1",
"husky": "9.1.7",
"jsdom": "29.0.2",
"lint-staged": "16.2.7",
"oxlint": "1.43.0",
"prettier": "3.8.1",
"tsx": "4.21.0",
"turbo": "^2.7.6",
"typescript": "^5.9.3",
"vitepress": "^1.6.4",
"vitest": "4.0.18"
},
"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"
}