-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.81 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.81 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
{
"name": "promptcoder-cli",
"version": "1.0.0",
"description": "AI-powered code generation CLI tool with conversation persistence, file tools, and LLM integration",
"main": "dist/index.js",
"bin": {
"promptcoder": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.0.0"
},
"preferGlobal": true,
"dependencies": {
"@anthropic-ai/sdk": "^0.20.0",
"@e2b/code-interpreter": "^1.5.1",
"@e2b/sdk": "^0.12.5",
"chalk": "^5.3.0",
"chokidar": "^3.5.3",
"commander": "^11.0.0",
"death": "^1.1.0",
"dotenv": "^16.3.0",
"fs-extra": "^11.1.0",
"glob": "^10.3.0",
"inquirer": "^9.2.0",
"open": "^10.0.0",
"openai": "^4.0.0"
},
"devDependencies": {
"@types/death": "^1.1.5",
"@types/fs-extra": "^11.0.0",
"@types/glob": "^8.1.0",
"@types/inquirer": "^9.0.0",
"@types/node": "^20.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"keywords": [
"cli",
"llm",
"ai",
"code-generation",
"openai",
"anthropic",
"claude",
"gpt",
"coding-assistant",
"developer-tools",
"automation",
"conversation",
"file-tools",
"diff-editor"
],
"author": {
"name": "Vladimir Petrov",
"email": "vlad@vasoftware.co.uk"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vpetroff/prompt-coder.git"
},
"bugs": {
"url": "https://github.com/vpetroff/prompt-coder/issues"
},
"homepage": "https://github.com/vpetroff/prompt-coder#readme"
}