-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
70 lines (70 loc) · 1.76 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
68
69
70
{
"name": "magiccube-cli-gpt",
"version": "0.2.0",
"description": "Translate human language to command line using ChatGPT.",
"author": "Henry Li <[email protected]>",
"bin": {
"cgpt": "./bin/run"
},
"homepage": "https://github.com/MagicCube/cli-gpt",
"license": "MIT",
"main": "dist/index.js",
"repository": "https://github.com/MagicCube/MagicCube/cli-gpt",
"files": [
"/bin",
"/dist",
"/prompt-template",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "^2",
"@oclif/plugin-help": "^5",
"dotenv": "^16.0.3",
"openai": "^3.2.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/node": "^16.18.14",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vue/compiler-sfc": "^3.2.47",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"oclif": "^3",
"prettier": "^2.8.4",
"shx": "^0.3.3",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"oclif": {
"bin": "cgpt",
"dirname": "cgpt",
"commands": "./dist/ui",
"default": ".",
"plugins": [
"@oclif/plugin-help"
]
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts --config .eslintrc",
"dev": "./bin/dev",
"postpack": "shx rm -f oclif.manifest.json",
"prepack": "yarn build && oclif manifest && oclif readme",
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=12.0.0"
},
"bugs": "https://github.com/MagicCube/cli-gpt/issues",
"keywords": [
"chatgpt",
"command line",
"gpt",
"openai"
],
"types": "dist/index.d.ts"
}