-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 941 Bytes
/
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
{
"name": "chatgpt",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"start:dev": "ts-node src/index.ts",
"test": "tsc && mocha dist/**/*.test.js",
"launch": "export CHATGPT_TOOL_OPEN_BROWSER=true && yarn run start:dev",
"build": "tsc",
"install-binary": "yarn install && tsc && sudo ln -sf $(pwd)/dist/index.js /usr/local/bin/chatgpt && sudo chmod +x /usr/local/bin/chatgpt",
"run-built": "node dist/index.js"
},
"dependencies": {
"@types/dotenv": "^8.2.0",
"@types/prettyjson": "^0.0.30",
"dotenv": "^16.0.3",
"open": "^8.4.1",
"prettyjson": "^1.2.5",
"typescript": "^4.9.5",
"yaml": "^2.2.1"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.13.0",
"@types/sinon": "^10.0.13",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"sinon": "^15.0.1",
"ts-node": "^10.9.1"
}
}