-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
69 lines (69 loc) · 1.7 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
{
"name": "gish-gpt",
"version": "0.4.2",
"main": "index.ts",
"exports": "./dist/index.js",
"type": "module",
"license": "MIT",
"scripts": {
"start": "node_modules/.bin/ts-node src/index.ts",
"nodemon": "./node_modules/.bin/nodemon src/index.ts",
"dev": "tsc-watch -p ./tsconfig.json --outDir ./dist --onSuccess './dist/index.js'",
"prd": "pm2 start index.ts",
"build": "tsc -p tsconfig.json; chmod 700 dist/index.js",
"test": "jest",
"esb": "esbuild ./src --bundle --platform=node --outfile=dist/gish.js",
"pkg": "pkg dist/gish.js -t node18-linux-x64,node18-macos-x64,node18-win-x64 --out-dir releases/",
"bundle": "npm run build && npm run esb && npm run pkg && ls -l releases/"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^29.5.0",
"@types/node": "^18.11.17",
"esbuild": "^0.17.13",
"jest": "^29.5.0",
"pkg": "^5.8.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"chalk": "4.1.2",
"commander": "^10.0.0",
"fs": "^0.0.1-security",
"gptoken": "^0.0.5",
"nodemon": "^3.0.3",
"openai": "^4.20.1",
"ora": "^6.1.2",
"os": "^0.1.2",
"path": "^0.12.7",
"playwright": "^1.29.1",
"prompt-sync": "^4.2.0",
"re": "^0.1.4",
"readline": "^1.3.0",
"settings": "^0.1.1",
"tsc-watch": "^6.0.0"
},
"bin": {
"gish": "dist/index.js"
},
"pkg": {
"targets": [
"node18-win-x64",
"node18-macos-x64",
"node18-linux-x64"
],
"options": [
"experimental-modules"
]
},
"Keywords": [
"gish",
"gpt-3",
"openai",
"gpt3",
"gpt",
"CLI",
"command-line"
]
}