-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.79 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
52
53
{
"name": "github-app-auth-action",
"description": "GitHub Action which gets an auth token for a repo or organization via a GitHub app installation",
"version": "0.0.0-development",
"private": true,
"homepage": "https://github.com/electron/github-app-auth-action",
"repository": {
"type": "git",
"url": "git+https://github.com/electron/github-app-auth-action.git"
},
"bugs": {
"url": "https://github.com/electron/github-app-auth-action/issues"
},
"main": "dist/index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"bundle": "npm run format:write && npm run package",
"ci-test": "vitest run --coverage --reporter=verbose",
"format:write": "prettier --write .",
"format:check": "prettier --check .",
"lint": "npx eslint . -c ./.github/linters/.eslintrc.yml",
"package": "esbuild src/index.js src/post.js --bundle --outdir=dist --platform=node --target=node20.2",
"package:watch": "npm run package -- --watch",
"test": "vitest run --coverage --reporter=verbose",
"all": "npm run format:write && npm run lint && npm run test && npm run package",
"prepare": "husky"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@electron/github-app-auth": "^2.2.1"
},
"devDependencies": {
"@types/node": "^20.5.6",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@vitest/coverage-v8": "^2.1.6",
"esbuild": "^0.19.2",
"eslint": "^8.48.0",
"eslint-plugin-github": "^4.9.2",
"eslint-plugin-jsonc": "^2.9.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vitest": "^0.5.4",
"husky": "^9.1.6",
"prettier": "^3.0.2",
"prettier-eslint": "^15.0.1",
"typescript": "^5.2.2",
"vitest": "^2.1.6"
}
}