-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1000 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
{
"name": "tmp-branch-action",
"version": "1.0.0",
"main": "dist/main/index.js",
"repository": "https://github.com/runsascoded/tmp-branch-action",
"author": "Ryan Williams <ryan@runsascoded.com>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.3",
"@actions/exec": "^1.0.3",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@vercel/ncc": "^0.34.0",
"concurrently": "^7.5.0",
"prettier": "^2.0.2",
"typescript": "^4.8.4"
},
"scripts": {
"build": "concurrently 'yarn build:main' 'yarn build:post'",
"watch": "concurrently 'yarn build:main --watch' 'yarn build:post' --watch",
"build:main": "ncc build main.js --out dist/main",
"watch:main": "ncc build main.js --out dist/main --watch",
"build:post": "ncc build post.js --out dist/post",
"watch:post": "ncc build post.js --out dist/post --watch"
}
}