-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.42 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.42 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
46
47
48
49
50
51
52
53
54
{
"name": "@kenmick/z-cli",
"version": "0.2.3",
"description": "An interactive GPT-powered command line tool that generates commands using natural language.",
"main": "dist/index.js",
"bin": {
"z-cli": "./dist/index.js"
},
"scripts": {
"format": "prettier \"src/**/*.{ts,js}\" --write",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --ext .ts src/ --fix",
"build": "tsc",
"start": "tsc && node dist/index.js",
"prepublishOnly": " pnpm lint:fix && pnpm format && pnpm build"
},
"keywords": [
"openai",
"ChatGPT",
"cli",
"interactive"
],
"type": "module",
"author": "kenmick",
"repository": "kenmick/z-cli",
"license": "GPL-3.0",
"files": [
"dist"
],
"dependencies": {
"@clack/prompts": "^0.6.3",
"chalk": "^5.2.0",
"cleye": "^1.3.2",
"clipboardy": "^3.0.0",
"external-editor": "^3.1.0",
"https-proxy-agent": "^5.0.1",
"npmlog": "^7.0.1",
"openai": "^3.2.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/mute-stream": "^0.0.1",
"@types/node": "^18.15.11",
"@types/npmlog": "^4.1.4",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"axios": "^0.26.0",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"prettier": "^2.8.7",
"typescript": "^5.0.2"
}
}