-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.26 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
{
"name": "coda-cli",
"version": "1.0.0",
"description": "A universal orchestration layer for AI coding assistants, adding safety features, memory, cost controls, and workflow automation",
"author": "Coda Contributors",
"license": "MIT",
"homepage": "https://github.com/gnanirahulnutakki/coda#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/gnanirahulnutakki/coda.git"
},
"bugs": {
"url": "https://github.com/gnanirahulnutakki/coda/issues"
},
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"keywords": [
"ai",
"coding-assistant",
"cli",
"claude",
"gemini",
"aider",
"safety",
"automation",
"development-tools",
"orchestration"
],
"scripts": {
"build": "tsup",
"build:watch": "nodemon --watch src/ --ext ts --exec tsup",
"format": "prettier --write \"**/*.{js,mjs,jsx,ts,tsx,json,md,mdx,css,yml,yaml}\"",
"test": "npm run build && vitest --reporter verbose --run",
"test:ci": "npm run build && vitest run -c vitest.config.ci.ts",
"test:coverage": "npm run build && vitest --coverage --run",
"lint": "tsc --noEmit",
"test:watch": "npm run build && vitest --watch",
"prepublishOnly": "npm run build",
"release": "./scripts/release.sh",
"release:patch": "./scripts/release.sh patch",
"release:minor": "./scripts/release.sh minor",
"release:major": "./scripts/release.sh major"
},
"type": "module",
"bin": {
"coda": "./dist/cli.js"
},
"dependencies": {
"@homebridge/node-pty-prebuilt-multiarch": "^0.12.0",
"@types/js-yaml": "^4.0.9",
"@xterm/addon-serialize": "^0.13.0",
"@xterm/headless": "^5.5.0",
"@xterm/xterm": "^5.5.0",
"clipboardy": "^4.0.0",
"commander": "^14.0.0",
"dedent": "^1.6.0",
"glob": "^10.3.10",
"js-yaml": "^4.1.0",
"node-notifier": "^10.0.1",
"picomatch": "^4.0.2",
"prompts": "^2.4.2",
"strip-ansi": "^7.1.0",
"yaml": "^2.8.0",
"zod": "^3.25.39"
},
"devDependencies": {
"@types/node": "^22.15.23",
"@types/prompts": "^2.4.9",
"prettier": "^3.5.3",
"tsup": "8.5.0",
"typescript": "^5.8.3",
"vitest": "^3.1.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"@homebridge/node-pty-prebuilt-multiarch"
]
}
}