-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.69 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.69 KB
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
{
"name": "scriptgpt",
"version": "0.1.1",
"author": "Utkarsh Kanwat",
"description": "",
"license": "MIT",
"main": "dist/index",
"types": "dist/index",
"type": "commonjs",
"allowJs": true,
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*.ts --fix",
"generate": "node dist/index.js generate",
"tsup": "tsup src/index.ts --dts"
},
"keywords": [
"gpt4",
"code-generation",
"openai",
"ai",
"agent",
"natural-language",
"gpt",
"llm"
],
"dependencies": {
"@ava/typescript": "^4.1.0",
"@types/readable-stream": "^4.0.10",
"@types/stream-array": "^1.1.4",
"@types/superagent": "^8.1.1",
"@types/uuid": "^9.0.7",
"@types/yargs": "^17.0.32",
"acorn": "^8.11.3",
"ajv": "^8.12.0",
"app-root-path": "^3.1.0",
"axios": "^1.2.1",
"cosmiconfig": "^9.0.0",
"fs-extra": "^11.2.0",
"htmlparser2": "^9.0.0",
"http-proxy": "^1.18.1",
"lodash": "^4.17.21",
"openai": "latest",
"ts-node": "^10.9.2",
"typedoc": "^0.25.6",
"validate-npm-package-name": "^5.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/http-proxy": "^1.17.14",
"@types/inquirer": "^9.0.7",
"@types/lodash": "^4.14.202",
"@types/node": "^18.19.4",
"@types/validate-npm-package-name": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"inquirer": "^8.2.6",
"tsup": "^8.0.1",
"typescript": "^4.9.4"
},
"bin": {
"scriptgpt": "./dist/index.js"
}
}