-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 885 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": "nibbler-action",
"version": "1.0.0",
"description": "Github action for [Nibbler](https://github.com/nordseth/Nibbler)",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:main": "ncc build src/main.ts -o dist",
"build:login": "ncc build src/login.ts -o dist/login",
"build:metadata": "ncc build src/metadata.ts -o dist/metadata",
"build": "concurrently 'npm:build:main' 'npm:build:login' 'npm:build:metadata'"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/tool-cache": "^2.0.1",
"@octokit/webhooks-definitions": "^3.67.3"
},
"devDependencies": {
"@types/node": "^20.11.19",
"@vercel/ncc": "^0.38.1",
"concurrently": "^8.2.2",
"typescript": "^5.3.3"
}
}