-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
70 lines (70 loc) · 1.81 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": "auto-copilot-cli",
"version": "1.1.2",
"main": "index.js",
"description": "This CLI tool uses the ChatGPT language model to create commands. This allows you to create a list of tasks and perform them sequentially, optimizing your workflow and increasing the efficiency of repetitive actions..",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"pretty": "prettier --write ."
},
"bin": {
"auto-copilot-cli": "cli.js",
"copilot": "cli.js"
},
"files": [
"dist",
"cli.js",
"README.md",
"config.json",
"demo"
],
"author": "Rustam Saryev",
"license": "ISC",
"devDependencies": {
"@types/cli-table": "^0.3.1",
"@types/inquirer": "^9.0.3",
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"eslint-plugin-import": "^2.27.5",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@dqbd/tiktoken": "^1.0.7",
"ai-validator": "^1.0.76",
"ajv": "^8.12.0",
"axios": "^1.4.0",
"chalk": "^4.1.2",
"cli-table": "^0.3.11",
"commander": "^10.0.1",
"directory-tree": "^3.5.1",
"hnswlib-node": "^1.4.2",
"inquirer": "^8.2.5",
"langchain": "^0.0.94",
"openai": "^3.2.1",
"ora": "^5.4.1",
"semver": "^7.5.0",
"simple-git": "^3.18.0",
"typeorm": "^0.3.15",
"winston": "^3.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsaryev/auto-copilot-cli.git"
},
"keywords": [
"copilot",
"cli",
"chatgpt",
"openai"
],
"bugs": {
"url": "https://github.com/rsaryev/auto-copilot-cli/issues"
},
"homepage": "https://github.com/rsaryev/auto-copilot-cli#readme"
}