-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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
{
"name": "complish",
"version": "0.2.2",
"description": "Complish - Generate auto-completion file for any CLI via chatGPT.",
"scripts": {
"build": "npm run chmod; tsc --build tsconfig.json",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"chmod": "mkdir -p dist; touch dist/index.js; chmod +x dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/werifu/complish.git"
},
"homepage": "https://github.com/werifu/complish#readme",
"bin": {
"complish": "dist/index.js"
},
"keywords": [
"tool",
"typescript",
"CLI",
"chatGPT",
"help page",
"fish",
"zsh",
"completion"
],
"author": "Werifu <github.com/werifu>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.14.6",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"commander": "^10.0.0",
"openai": "^3.2.1",
"winston": "^3.8.2",
"zod": "^3.21.4"
}
}