-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.28 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
{
"name": "@0xdevabir/enhance",
"version": "0.1.3",
"description": "AI prompt middleware — intelligently rewrites developer prompts before sending to coding agents",
"bin": {
"enhance": "./bin/enhance.js"
},
"files": [
"dist",
"bin",
"README.md"
],
"scripts": {
"dev": "tsx src/cli/index.ts",
"build": "tsup",
"start": "node bin/enhance.js",
"test": "vitest run",
"prepublishOnly": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xdevabir/agent-enhance.git"
},
"keywords": [
"ai",
"cli",
"prompt",
"developer-tools",
"claude",
"codex",
"opencode",
"prompt-engineering"
],
"author": "0xdevabir",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/0xdevabir/agent-enhance/issues"
},
"homepage": "https://github.com/0xdevabir/agent-enhance#readme",
"engines": {
"node": ">=20"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.98.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"cosmiconfig": "^9.0.1",
"fast-glob": "^3.3.3",
"ora": "^9.4.0"
},
"devDependencies": {
"@types/node": "^25.9.1",
"tsup": "^8.5.1",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
}
}