-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.56 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.56 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
{
"name": "codeforge",
"version": "0.1.0",
"description": "Multi-model AI code analysis and development system. Automates code reviews, architectural design, and component generation using Claude, GPT, and DeepSeek.",
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/devstd2211/code-forge.git"
},
"homepage": "https://github.com/devstd2211/code-forge",
"bugs": {
"url": "https://github.com/devstd2211/code-forge/issues"
},
"keywords": [
"ai",
"code-review",
"architecture",
"claude",
"llm",
"code-generation",
"typescript"
],
"author": "",
"license": "MIT",
"bin": {
"codeforge": "./dist/cli/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc && node dist/cli/cli.js",
"cli": "tsx src/cli/cli.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"type-check": "tsc --noEmit",
"lint": "tsc --noEmit",
"sample": "tsx samples/hello-world-go-workflow.ts",
"sample:build": "tsc && node dist/samples/hello-world-go-workflow.js"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.20.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"dotenv": "^16.3.1",
"openai": "^6.16.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"@types/uuid": "^9.0.7",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}