-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.1 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
{
"private": true,
"keywords": [
"actions",
"release",
"helper",
"github"
],
"repository": {
"type": "git",
"url": "https://github.com/actions-cool/release-helper.git",
"branch": "main"
},
"license": "MIT",
"author": "xrkffgg",
"main": "src/main.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint src/**/*.ts --fix",
"package": "ncc build src/main.ts -o dist",
"all": "npm run format-check && npm run lint && npm run package"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.1.1",
"@actions/github": "^4.0.0",
"actions-util": "^1.0.0"
},
"devDependencies": {
"@octokit/rest": "^19.0.5",
"@typescript-eslint/parser": "^4.15.2",
"@umijs/fabric": "^2.6.2",
"@vercel/ncc": "0.34.0",
"axios": "^0.21.1",
"eslint": "^7.14.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.2.1",
"typescript": "^4.1.2"
}
}