-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.54 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"type": "module",
"description": "GPT-CLI is a command-line interface tool that allows you to use ChatGPT power from your own CLI! You can combine GPT-CLI and other teraminal commands with standard input-output interface and make your work more efficient.",
"engines": {
"node": ">=16"
},
"name": "@nullnull/gpt-cli",
"publishConfig": {
"access": "public"
},
"keywords": [
"ai",
"git",
"gpt",
"chatgpt"
],
"scripts": {
"postinstall": "node scripts/createConfig.js",
"dev": "ts-node src/index.ts",
"build": "tsc",
"watch": "tsc --watch",
"start": "node dist/index.js"
},
"bin": {
"gpt": "./bin/cli.js",
"gpt-cli": "./bin/cli.js",
"ai": "./bin/cli.js"
},
"files": [
"dist",
"scripts",
"bin"
],
"version": "0.1.4",
"author": "Katsuma Narisawa",
"license": "MIT",
"devDependencies": {
"@types/cli-spinner": "^0.2.1",
"@types/inquirer": "^9.0.0",
"@types/mustache": "^4.2.2",
"@types/node": "^20.4.10",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"vitest": "^0.34.1"
},
"dependencies": {
"@types/js-yaml": "^4.0.5",
"chalk": "^5.0.0",
"cli-spinner": "^0.2.10",
"clipboardy": "^3.0.0",
"commander": "^11.0.0",
"inquirer": "^9.0.0",
"js-yaml": "^4.1.0",
"mustache": "^4.2.0",
"openai": "^3.3.0",
"tslog": "^4.9.1",
"zod": "^3.21.4"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write"
]
}
}