-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 896 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 896 Bytes
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
{
"name": "promptvault-cli",
"version": "1.0.0",
"description": "Local-first CLI tool for managing and evaluating LLM prompts",
"main": "dist/index.js",
"bin": {
"pv": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "npm run build && node dist/index.js",
"start": "node dist/index.js",
"smoke": "node scripts/smoke-test.mjs"
},
"license": "MIT",
"dependencies": {
"axios": "^1.7.0",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"cheerio": "^1.0.0-rc.12",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"diff": "^5.2.0",
"inquirer": "^9.2.22",
"marked": "^13.0.0",
"marked-terminal": "^7.1.0",
"ora": "^8.0.1"
},
"devDependencies": {
"@types/diff": "^5.2.1",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.14.9",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"type": "module"
}