-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.75 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
{
"name": "revu-cli",
"version": "0.4.0",
"description": "revu is a comprehensive command-line tool designed to enhance your coding workflow. It utilizes the advanced capabilities of GPT-4 and the GitHub API to provide insightful code analysis.",
"main": "dist/main.js",
"bin": {
"revu": "./dist/main.js"
},
"scripts": {
"start": "NODE_ENV=development node dist/main.js",
"lint": "eslint \"src/**/*.ts\" --fix",
"build": "tsc",
"build:dev": "tsc --watch"
},
"keywords": [
"git",
"cli",
"automation",
"typescript",
"openai",
"gpt-3",
"gpt-4"
],
"author": "phmz",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@types/lodash.merge": "^4.6.7",
"@types/node": "^20.2.1",
"@types/node-fetch": "^2.6.4",
"@types/prompts": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^10.0.1",
"escape-string-regexp": "^4.0.0",
"fast-glob": "^3.2.12",
"lodash.merge": "^4.6.2",
"node-fetch": "^2.6.11",
"openai": "^3.2.1",
"ora": "^5.4.1",
"parse-diff": "^0.11.1",
"prompts": "^2.4.2",
"simple-git": "^3.18.0",
"winston": "^3.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phmz/revu-cli.git"
},
"bugs": {
"url": "https://github.com/phmz/revu-cli/issues"
},
"homepage": "https://github.com/phmz/revu-cli#readme"
}