forked from gr2m/octokit-plugin-create-pull-request
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.03 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
{
"name": "@type-challenges/octokit-create-pull-request",
"version": "0.1.9",
"description": "Octokit plugin to create a pull request with multiple file changes",
"license": "MIT",
"author": "Gregor Martynus (https://github.com/gr2m)",
"repository": "https://github.com/type-challenges/octokit-create-pull-request",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup ./src/index.ts --format esm,cjs --dts",
"lint": "eslint .",
"release": "pnpx bumpp patch --tag --commit && pnpm build && npm publish"
},
"devDependencies": {
"@antfu/eslint-config": "^0.20.6",
"@octokit/core": "^3.6.0",
"@octokit/plugin-paginate-rest": "^2.17.0",
"@octokit/types": "^6.34.0",
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"eslint": "^8.13.0",
"tsup": "^5.12.5",
"typescript": "^4.6.3"
},
"eslintConfig": {
"extends": "@antfu/eslint-config"
},
"dependencies": {
"@actions/github": "^5.0.1"
}
}