-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 KB
/
package.json
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
{
"name": "prompt-iteration-assistant",
"version": "0.0.36",
"description": "A set of CLI tools to help you iterate on your LLM prompts.",
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md",
"package.json",
"CHANGELOG.md"
],
"scripts": {
"main": "npx tsx src/main.ts",
"build": "bash scripts/build.sh",
"test": "npx jest",
"example:simple": "npx tsx src/examples/simple.ts",
"example:instruct": "npx tsx src/examples/instructModel.ts"
},
"author": "Jamesb",
"license": "ISC",
"dependencies": {
"@inquirer/prompts": "^3.3.0",
"@modelfusion/cost-calculator": "^0.1.0",
"boxen": "^7.1.1",
"chalk": "^4.1.2",
"cli-highlight": "^2.1.11",
"dotenv": "^16.3.1",
"front-matter": "^4.0.2",
"inquirer": "^8.0.0",
"inquirer-search-list": "^1.2.6",
"json-schema-to-typescript": "^13.1.1",
"marked": "^10.0.0",
"marked-terminal": "^6.1.0",
"modelfusion": "^0.137.0",
"openai": "^4.20.1",
"promptfoo": "^0.31.1",
"remeda": "^1.29.0",
"tty-table": "^4.2.3",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.11",
"@types/marked-terminal": "^6.0.1",
"@types/node": "^20.10.4",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}