forked from lando/setup-lando
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.68 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@lando/setup-lando",
"description": "GitHub Action to setup Lando on GitHub Actions.",
"version": "3.0.3",
"author": "Mike Pirog @pirog",
"main": "setup-lando.js",
"license": "GPL-3.0",
"repository": "https://github.com/lando/setup-lando",
"bugs": "https://github.com/lando/setup-lando/issues",
"homepage": "https://github.com/lando/setup-lando",
"keywords": [
"lando",
"Github Actions"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"@octokit/plugin-paginate-rest": "^6.0.0",
"js-yaml": "^4.1.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"semver": "^7.5.4"
},
"devDependencies": {
"@babel/core": "^7.21.5",
"@babel/eslint-parser": "^7.16.0",
"@lando/vitepress-theme-default-plus": "^1.0.2",
"@vercel/ncc": "^0.38.1",
"eslint": "^7.32.0",
"eslint-config-google": "^0.9.1",
"shellcheck": "^2.2.0",
"shx": "^0.3.4",
"ua-parser-js": "^1.0.37",
"vitepress": "^1.0.0-rc.42"
},
"scripts": {
"docs:dev": "vitepress dev docs --debug",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "eslint . --ext .js --ext .mjs && shellcheck setup-lando.sh",
"prepare": "npm run prepare:gha && npm run prepare:scripts && npm run prepare:versions",
"prepare:scripts": "shx rm -f ./dist/setup-lando* && shx cp -rf ./setup-lando.* ./dist/",
"prepare:gha": "ncc build setup-lando.js -o dist --source-map --license licenses.txt",
"prepare:versions": "node versioner.js"
}
}