-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 926 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
41
42
43
44
{
"name": "ai-cli",
"version": "1.0.0",
"description": "An interactive AI-powered CLI tool",
"main": "src/index.js",
"type": "module",
"bin": {
"ai-cli": "./dist/index.mjs"
},
"scripts": {
"build": "pkgroll",
"start": "node src/index.js",
"lint": "eslint .",
"format": "prettier --write \"src/**/*.js\"",
"postinstall": "chmod +x ./dist/index.mjs",
"prepare": "npm run build"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"cli",
"ai",
"openai"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"chalk": "^5.4.1",
"cli-markdown": "^3.4.0",
"commander": "^12.1.0",
"openai": "^4.77.0",
"readline": "^1.3.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"pkgroll": "^2.6.0",
"prettier": "^3.4.2"
}
}