forked from namespacelabs/nscloud-setup-buildx-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1016 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
37
38
39
{
"name": "nscloud-setup-buildx-action",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"command-exists": "^1.2.9"
},
"scripts": {
"build": "concurrently 'yarn build:main' 'yarn build:post'",
"watch": "concurrently 'yarn watch:main' 'yarn watch:post'",
"build:main": "ncc build main.ts --out dist/main",
"watch:main": "ncc build main.ts --out dist/main --watch",
"build:post": "ncc build post.ts --out dist/post",
"watch:post": "ncc build post.ts --out dist/post --watch",
"add": "git add dist/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/namespacelabs/nscloud-setup-buildx-action.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^16.11.7",
"@vercel/ncc": "^0.34.0",
"concurrently": "^7.5.0",
"pre-commit": "^1.2.2",
"prettier": "^2.0.2",
"typescript": "^4.8.4"
},
"pre-commit": [
"build",
"add"
]
}