-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.91 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.91 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
{
"name": "codebase-os",
"version": "1.0.0",
"description": "Codebase Operating System — A foundational layer for intelligent software development",
"author": "Dharantej Reddy Poduvu <dharan.poduvu@gmail.com>",
"keywords": [
"ai",
"agent",
"automation",
"codebase",
"engineering"
],
"main": "dist/cli/index.js",
"bin": {
"cos": "dist/cli/index.js"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"dev": "ts-node --project tsconfig.json src/cli/index.ts",
"start": "node dist/cli/index.js",
"typecheck": "tsc --project tsconfig.json --noEmit",
"test": "jest --passWithNoTests"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.20.9",
"@babel/parser": "^7.23.6",
"@babel/traverse": "^7.23.7",
"@babel/types": "^7.23.6",
"@google/generative-ai": "^0.24.1",
"better-sqlite3": "^9.4.3",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"dockerode": "^4.0.2",
"dotenv": "^16.3.1",
"fast-glob": "^3.3.2",
"framer-motion": "^12.38.0",
"gsap": "^3.15.0",
"inquirer": "^8.2.6",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"openai": "^4.24.1",
"ora": "^5.4.1",
"semver": "^7.5.4",
"three": "^0.184.0",
"tree-kill": "^1.2.2",
"ts-morph": "^21.0.1",
"uuid": "^9.0.1",
"which": "^3.0.1",
"winston": "^3.11.0",
"yaml": "^2.3.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/babel__traverse": "^7.20.5",
"@types/better-sqlite3": "^7.6.8",
"@types/dockerode": "^3.3.23",
"@types/inquirer": "^8.2.10",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.6",
"@types/semver": "^7.5.6",
"@types/ssh2": "^1.15.5",
"@types/uuid": "^9.0.7",
"@types/which": "^3.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}