-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.16 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.16 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
{
"name": "devglide",
"version": "0.1.17",
"description": "AI workflow toolkit with MCP servers for kanban, shell, testing, workflows, and more — built for Claude Code",
"license": "MIT",
"author": "Daniel Kutyla",
"type": "module",
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DannyNsITServices/devglide.git"
},
"homepage": "https://github.com/DannyNsITServices/devglide#readme",
"bugs": {
"url": "https://github.com/DannyNsITServices/devglide/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude-code",
"developer-tools",
"ai-workflow",
"kanban",
"terminal",
"test-automation",
"cli"
],
"bin": {
"devglide": "./bin/devglide.js"
},
"files": [
"bin/",
"dist/",
"scripts/",
"src/server.ts",
"src/project-context.ts",
"src/routers/",
"src/public/",
"src/apps/",
"src/packages/",
"turbo.json",
"pnpm-workspace.yaml"
],
"scripts": {
"dev": "turbo dev --concurrency 20",
"dev:server": "tsx src/server.ts",
"build": "turbo build",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"test": "vitest run",
"build:mcp": "node scripts/build-mcp.mjs",
"clean": "turbo clean && rm -rf node_modules"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"@paralleldrive/cuid2": "^2.3.1",
"better-sqlite3": "^11.10.0",
"chokidar": "^4.0.3",
"express": "^5.2.1",
"multer": "1.4.5-lts.2",
"node-pty": "^1.1.0",
"openai": "^4.104.0",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"uuid": "^11.1.0",
"tsx": "^4.19.0",
"zod": "^3.25.49"
},
"devDependencies": {
"@devglide/eslint-config": "workspace:*",
"esbuild": "^0.27.0",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.0",
"@types/multer": "^1.4.13",
"@types/node": "^22.0.0",
"eslint": "^9.39.4",
"turbo": "^2.5.0",
"typescript": "^5.8.0",
"vitest": "^4.1.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"node-pty",
"better-sqlite3"
]
}
}