-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.04 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
{
"name": "convoy",
"version": "0.0.1",
"description": "Deployment agent that rehearses, ships, and observes — without touching your code.",
"private": true,
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/teckedd-code2save/convoy.git"
},
"engines": {
"node": ">=20"
},
"scripts": {
"test": "tsx --test \"src/**/*.test.ts\"",
"typecheck": "tsc --noEmit",
"dev": "tsx watch src/index.ts",
"convoy": "tsx --env-file-if-exists=.env src/cli.ts",
"mcp": "tsx --env-file-if-exists=.env src/mcp/index.ts",
"mcp-http": "tsx --env-file-if-exists=.env src/mcp/http.ts"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.9.0",
"playwright": "^1.59.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.90.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"better-sqlite3": "^12.9.0",
"commander": "^14.0.3",
"picocolors": "^1.1.1",
"zod": "^4.4.3"
}
}