-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.85 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.85 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
80
81
82
{
"name": "tuneprompt",
"version": "1.1.3",
"description": "Industrial-grade testing framework for LLM prompts",
"repository": {
"type": "git",
"url": "git+https://github.com/CodeForgeNet/tuneprompt.git"
},
"bugs": {
"url": "https://github.com/CodeForgeNet/tuneprompt/issues"
},
"homepage": "https://www.tuneprompt.xyz",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"tuneprompt": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"llm",
"testing",
"prompts",
"ai",
"openai",
"anthropic",
"claude",
"gpt",
"prompt-engineering",
"ci-cd"
],
"author": "CodeForgeNet",
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/diff": "^7.0.2",
"@types/inquirer": "^9.0.9",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.21",
"@types/node": "^25.0.6",
"@types/uuid": "^10.0.0",
"jest": "^30.2.0",
"nodemon": "^3.1.11",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@google/genai": "^1.44.0",
"@types/chokidar": "^1.7.5",
"axios": "^1.13.2",
"better-sqlite3": "^12.5.0",
"chalk": "^5.6.2",
"chalk-template": "^1.1.2",
"chokidar": "^5.0.0",
"cli-table3": "^0.6.5",
"commander": "^14.0.2",
"cosmiconfig": "^9.0.0",
"date-fns": "^4.1.0",
"diff": "^8.0.3",
"dotenv": "^17.2.3",
"inquirer": "^13.1.0",
"js-yaml": "^4.1.1",
"lodash": "^4.17.21",
"openai": "^6.16.0",
"ora": "^9.0.0",
"posthog-node": "^5.20.0",
"uuid": "^13.0.0"
}
}