-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
46 lines (46 loc) · 1.02 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": "chatgptbot",
"version": "0.0.1",
"private": true,
"description": "A Probot app",
"author": "oceanlvr",
"license": "ISC",
"homepage": "https://github.com/oceanlvr/ChatGPT-ProBot",
"keywords": [
"probot",
"rebot",
"github-app",
"github-robot",
"chatgpt"
],
"scripts": {
"start": "probot run ./dist/index.js",
"dev": "nodemon",
"build": "rollup -c --bundleConfigAsCjs",
"test": "jest"
},
"dependencies": {
"@oceanlvr/chatgpt": "^2.0.0",
"probot": "^12.2.4",
"probot-commands-pro": "^1.0.1"
},
"devDependencies": {
"@antfu/eslint-config": "^0.33.1",
"@rollup/plugin-commonjs": "^23.0.3",
"@rollup/plugin-json": "^5.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.2.0",
"eslint": "^8.29.0",
"jest": "^29.0.0",
"nock": "^13.0.5",
"nodemon": "^2.0.20",
"rollup": "^3.5.1",
"smee-client": "^1.2.2"
},
"engines": {
"node": ">= 14"
},
"jest": {
"testEnvironment": "node"
}
}