-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 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
{
"name": "openai-chat-on-issues",
"version": "1.1.1",
"description": "This is a GitHub Actions for running OpenAI's chat on GitHub Issues.",
"main": "src/main.js",
"author": "Hiroyuki Kusu <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/snnaplab/openai-chat-on-issues.git"
},
"bugs": {
"url": "https://github.com/snnaplab/openai-chat-on-issues/issues"
},
"homepage": "https://github.com/snnaplab/openai-chat-on-issues#readme",
"scripts": {
"lint": "eslint .",
"test": "jest",
"package": "ncc build src/main.js -o dist --source-map --license licenses.txt",
"check": "npm run lint && npm run test && npm run package",
"dev": "NODE_ENV=development node src/main.js"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"dotenv": "^16.0.3",
"openai": "^3.2.1"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"eslint": "^8.36.0",
"jest": "^29.5.0",
"nock": "^13.3.0"
}
}