This repository has been archived by the owner on Mar 23, 2023. It is now read-only.
generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
51 lines (51 loc) · 1.46 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
{
"name": "chatgpt-action",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "A collection of ChatGPT assistants, e.g., code viewer, labeler, assigner, etc.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"package": "ncc build --license licenses.txt",
"act": "npm run build && npm run package && ./bin/act pull_request_target --secret-file .secrets",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unsafecoerce/chatgpt-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Tao He <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/action": "^5.0.2",
"chatgpt": "file:./chatgpt-api",
"minimatch": "^7.4.2",
"node-fetch": "^3.3.0"
},
"devDependencies": {
"@jest/globals": "^29.4.3",
"@types/node": "^18.14.4",
"@typescript-eslint/parser": "^5.54.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.35.0",
"eslint-plugin-github": "^4.6.1",
"eslint-plugin-jest": "^25.3.2",
"jest": "^27.2.5",
"js-yaml": "^4.1.0",
"prettier": "2.5.1",
"ts-jest": "^27.1.2",
"typescript": "^4.4.4"
}
}