-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
37 lines (37 loc) · 1011 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
{
"name": "setup-lazarus",
"version": "3.2.17",
"description": "Set up your GitHub Actions workflow with a specific version of Lazarus",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build -o dist/main lib/main.js && ncc build -o dist/post lib/post.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gcarreno/setup-lazarus.git"
},
"keywords": [
"actions",
"lazarus",
"setup"
],
"author": "Gustavo Carreno <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcarreno/setup-lazarus/issues"
},
"homepage": "https://github.com/gcarreno/setup-lazarus#readme",
"dependencies": {
"@actions/cache": "^2.0.5",
"@actions/core": "^1.9.1",
"@actions/exec": "^1.0.4",
"@actions/github": "^2.2.0",
"@actions/http-client": "=1.0.8",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.6.1"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"typescript": "^4.9.5"
}
}