-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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
{
"name": "chatgpt-tui",
"version": "0.3.1",
"main": "dist/index.js",
"author": "Narin Luangrath <[email protected]>",
"license": "MIT",
"bin": {
"chatgpt-tui": "dist/index.js"
},
"engines": {
"node": ">=14.15.0"
},
"dependencies": {
"chalk": "4",
"cli-highlight": "^2.1.11",
"commander": "^10.0.0",
"figlet": "^1.5.2",
"node-clipboardy": "^1.0.3",
"openai": "^3.2.1",
"prompts": "^2.4.2",
"puppeteer": "^19.7.3"
},
"scripts": {
"dev": "ts-node src/index.ts",
"test": "jest",
"precommit": "yarn test",
"build": "rm -rf dist && tsc",
"shebang": "echo '#!/usr/bin/env node' | cat - dist/index.js > temp && mv temp dist/index.js && chmod +x dist/index.js",
"deploy:patch": "yarn build && yarn shebang && npm version patch && npm publish --access public",
"deploy:minor": "yarn build && yarn shebang && npm version minor && npm publish --access public",
"deploy:major": "yarn build && yarn shebang && npm version major && npm publish --access public"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.14.6",
"husky": "^8.0.3",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}