-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
64 lines (64 loc) · 1.25 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
{
"name": "openai-chatgpt",
"version": "0.0.9",
"license": "MIT",
"bin": "dist/cli.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsc && chmod +x dist/cli.js",
"start": "npm run build && dist/cli.js",
"pretest": "npm run build",
"test": "xo && ava"
},
"files": [
"dist"
],
"dependencies": {
"chatgpt": "^4.7.2",
"conf": "^11.0.1",
"ink": "^3.2.0",
"ink-big-text": "^1.2.0",
"ink-gradient": "^2.0.0",
"ink-select-input": "^4.2.1",
"ink-spinner": "^4.0.3",
"ink-text-input": "^4.0.3",
"meow": "^9.0.0",
"node-fetch": "^3.3.0",
"react": "^17.0.2",
"uuid": "^9.0.0"
},
"ava": {
"typescript": {
"extensions": [
"tsx"
],
"rewritePaths": {
"src/": "dist/"
}
}
},
"xo": {
"extends": "xo-react",
"rules": {
"react/prop-types": "off"
}
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@sindresorhus/tsconfig": "^3.0.1",
"@types/ink-big-text": "^1.2.1",
"@types/ink-gradient": "^2.0.1",
"@types/react": "^18.0.27",
"@types/uuid": "^9.0.0",
"ava": "^5.1.1",
"chalk": "^4.1.2",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"ink-testing-library": "^2.1.0",
"typescript": "^4.9.5",
"xo": "^0.39.1"
}
}