-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
40 lines (40 loc) · 862 Bytes
/
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
{
"version": "0.0.1",
"name": "ai-tdd",
"description": "You write a test -> GPT writes the code to pass it ✅",
"bin": {
"aitdd": "./cli.ts"
},
"author": "https://github.com/di-sukharev",
"module": "cli.ts",
"type": "module",
"release": {
"branches": [
"master"
]
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "bun run cli.ts",
"test": "bun test",
"posttest": "bun run __tests__/sandbox/clean.ts",
"build": "bun build ./cli.ts --target=bun --outfile=out/aitdd.js"
},
"devDependencies": {
"@types/ini": "^1.3.31",
"bun-types": "^1.0.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@clack/prompts": "latest",
"axios": "latest",
"chalk": "^5.3.0",
"cleye": "^1.3.2",
"ini": "^4.1.1",
"openai": "latest"
}
}