generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
33 lines (33 loc) · 878 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
{
"name": "action-sync-branch",
"version": "1.0.1",
"description": "GitHub Action to keep a branch in sync with the current branch",
"main": "lib/main.js",
"scripts": {
"start": "tsc --watch",
"build": "tsc && ncc build --source-map --license licenses.txt",
"lint": "foundry run eslint . --ext .js,.jsx,.json,.ts,.tsx",
"lint:fix": "npm run lint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/connor-baer/action-sync-branch.git"
},
"keywords": [
"github",
"actions"
],
"author": "Connor Bär <[email protected]",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@sumup/foundry": "^7.2.0",
"@types/node": "^22.10.1",
"@vercel/ncc": "^0.38.3",
"js-yaml": "^4.1.0",
"typescript": "^5.7.2"
}
}