-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.06 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
{
"name": "gitpromptchain",
"version": "1.0.0",
"description": "A tool for logging LLM conversation history as part of each commit",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"gitpromptchain": "dist/cli.js",
"git-promptchain": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/cli.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:workflow": "npx ts-node scripts/test-workflow.ts",
"test:llm": "npx ts-node scripts/test-llm-tips.ts",
"demo": "npx ts-node scripts/demo-workflow.ts"
},
"keywords": [
"git",
"llm",
"prompt",
"conversation",
"mcp",
"ai",
"version-control"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"dependencies": {
"@types/uuid": "^10.0.0",
"openai": "^4.70.0",
"simple-git": "^3.30.0",
"uuid": "^9.0.1"
}
}