-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.23 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
71
72
73
74
75
76
77
78
79
{
"name": "eslint-ai",
"version": "1.2.0",
"description": "eslint-ai is an cli tools that help us to lint and view suggestion from ai if we had a code error with eslint support.",
"engines": {
"node": ">=14.14"
},
"license": "MIT",
"type": "module",
"bin": {
"eslint-ai": "./dist/cli.mjs"
},
"author": {
"name": "iamando",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/iamando/eslint-ai.git"
},
"bugs": {
"url": "https://github.com/iamando/eslint-ai/issues"
},
"homepage": "https://github.com/iamando/eslint-ai#readme",
"keywords": [
"eslint-ai",
"javascript",
"typescript",
"ai",
"linter",
"lint",
"verify-code",
"eslint",
"suggestions"
],
"files": [
"dist"
],
"scripts": {
"start": "jiti ./src/cli.ts",
"typecheck": "tsc",
"build": "pkgroll",
"lint": "prettier --check . && eslint",
"lint:fix": "prettier --write . && eslint --fix",
"clean": "rimraf dist",
"release": "npm run clean && npm run build && npm publish --follow-tags",
"release:major": "npm run clean && npm run build && npm version major && npm run build && npm publish && git push --follow-tags",
"release:minor": "npm run clean && npm run build && npm version minor && npm run build && npm publish && git push --follow-tags",
"release:patch": "npm run clean && npm run build && npm version patch && npm run build && npm publish && git push --follow-tags"
},
"devDependencies": {
"@types/dedent": "^0.7.0",
"@types/ini": "^1.3.31",
"@types/lodash": "^4.14.194",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jiti": "^1.18.2",
"pkgroll": "^1.9.0",
"prettier": "^2.8.7",
"rimraf": "^5.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@clack/core": "^0.3.2",
"@clack/prompts": "^0.6.3",
"@dqbd/tiktoken": "^1.0.6",
"axios": "^1.3.6",
"cleye": "^1.3.2",
"dedent": "^0.7.0",
"http": "^0.0.1-security",
"ini": "^4.1.0",
"kolorist": "^1.7.0",
"lodash": "^4.17.21",
"openai": "^3.2.1"
}
}