-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
36 lines (36 loc) · 1007 Bytes
/
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
{
"name": "auto-update",
"version": "2.2.1",
"license": "MIT",
"type": "module",
"files": [
"action.yml",
"dist"
],
"scripts": {
"prebuild": "tsc --build",
"build": "ncc build src/index.ts --minify --target es2021 --v8-cache",
"prettier": "prettier --ignore-path .gitignore \"./**/*.{cjs,js,json,md,ts,yml}\"",
"xo": "xo"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"ensure-error": "^4.0.0"
},
"devDependencies": {
"@octokit/plugin-paginate-rest": "^5.0.1",
"@octokit/webhooks-definitions": "^3.67.3",
"@types/node": "^16.11.7",
"@vercel/ncc": "^0.34.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"prettier": "^2.8.0",
"prettier-plugin-packagejson": "^2.3.0",
"typescript": "^4.9.3",
"xo": "^0.53.1",
"yarn-deduplicate": "^6.0.0"
}
}