forked from tibdex/backport
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 KB
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
{
"name": "backport",
"version": "2.1.8",
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"files": [
"action.yml",
"dist"
],
"scripts": {
"prebuild": "tsc --build",
"build": "ncc build src/index.ts --minify --target es2024 --v8-cache",
"prettier": "prettier --ignore-path .gitignore \"./**/*.{cjs,js,json,md,ts,yml}\"",
"xo": "xo"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.0.0",
"ensure-error": "^5.0.0",
"lodash-es": "^4.18.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@octokit/webhooks-types": "^7.6.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/error-cause": "^1.0.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.3.0",
"@vercel/ncc": "^0.38.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-sort-destructure-keys": "^3.0.0",
"prettier": "^3.8.1",
"prettier-plugin-packagejson": "^3.0.0",
"typescript": "^5.9.3",
"xo": "^2.0.2",
"yarn-deduplicate": "^6.0.2"
}
}