-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.04 KB
/
package.json
File metadata and controls
48 lines (48 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
39
40
41
42
43
44
45
46
47
48
{
"name": "@cscull/prompt-loop",
"version": "0.1.0",
"description": "Autonomously improve AI agent system prompts through human feedback loops",
"type": "module",
"bin": {
"promptloop": "./dist/cli.js"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"build:ui": "cd ui && npx vite build",
"build:all": "npm run build && npm run build:ui",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cscull/PromptLoop.git"
},
"homepage": "https://github.com/cscull/PromptLoop#readme",
"keywords": [
"ai",
"prompt-engineering",
"agent",
"cli",
"feedback-loop"
],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"commander": "^13.1.0",
"dotenv": "^17.3.1",
"openai": "^4.85.0"
},
"devDependencies": {
"@types/node": "^22.13.0",
"typescript": "^5.7.0"
}
}