forked from BuilderIO/ai-shell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.36 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
{
"name": "@builder.io/ai-shell",
"description": "A CLI that converts natural language to shell commands.",
"version": "0.1.18",
"type": "module",
"dependencies": {
"@clack/core": "latest",
"@clack/prompts": "latest",
"@dqbd/tiktoken": "^1.0.2",
"@nexssp/os": "^2.0.31",
"axios": "^1.3.5",
"cleye": "^1.3.2",
"clipboardy": "^2.3.0",
"dedent": "^0.7.0",
"execa": "^7.1.1",
"ini": "^4.0.0",
"kolorist": "^1.7.0",
"openai": "^3.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/BuilderIO/ai-shell"
},
"files": [
"dist"
],
"bin": {
"ai-shell": "./dist/cli.mjs",
"ai": "./dist/cli.mjs"
},
"scripts": {
"start": "jiti ./src/cli.ts",
"lint:fix": "prettier --write . && eslint --fix",
"lint": "prettier --check . && eslint",
"typecheck": "tsc",
"build": "pkgroll",
"release:patch": "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/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.38.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jiti": "^1.17.0",
"pkgroll": "^1.9.0",
"prettier": "^2.8.7",
"typescript": "^4.9.5"
}
}