-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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": "project-add",
"version": "1.0.0",
"description": "Add an issue or pull request to a project",
"main": "index.js",
"scripts": {
"build": "tsc && npm run package",
"test": "jest",
"package": "ncc build lib/main.js --source-map",
"format": "prettier --write \"**/*.ts\"",
"format-check": "prettier --check \"**/*.ts\"",
"lint": "eslint src/**/*.ts",
"act-issue": "act issues -e issue.json -s GH_TOKEN -s OPENAI_API_KEY"
},
"keywords": [
"actions",
"node",
"openai",
"github",
"issue",
"labeler"
],
"author": "Austen Stone",
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/austenstone/project-add.git"
},
"license": "ISC",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"@vercel/ncc": "^0.33.1",
"eslint": "^8.8.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"ts-jest": "^27.0.7",
"typescript": "^4.5.4"
}
}