2020-08-18 15:40:31 +00:00
|
|
|
{
|
|
|
|
"name": "docker-setup-buildx",
|
|
|
|
"description": "Set up Docker Buildx",
|
2024-05-07 13:43:51 +00:00
|
|
|
"main": "src/main.ts",
|
2020-08-18 15:40:31 +00:00
|
|
|
"scripts": {
|
2024-05-07 13:43:51 +00:00
|
|
|
"build": "ncc build --source-map --minify --license licenses.txt",
|
2023-09-07 10:41:14 +00:00
|
|
|
"lint": "yarn run prettier && yarn run eslint",
|
|
|
|
"format": "yarn run prettier:fix && yarn run eslint:fix",
|
|
|
|
"eslint": "eslint --max-warnings=0 .",
|
|
|
|
"eslint:fix": "eslint --fix .",
|
|
|
|
"prettier": "prettier --check \"./**/*.ts\"",
|
|
|
|
"prettier:fix": "prettier --write \"./**/*.ts\"",
|
2024-05-07 13:43:51 +00:00
|
|
|
"test": "jest"
|
2020-08-18 15:40:31 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/docker/setup-buildx-action.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"docker",
|
|
|
|
"buildx"
|
|
|
|
],
|
2023-09-08 07:50:50 +00:00
|
|
|
"author": "Docker Inc.",
|
2020-08-18 15:40:31 +00:00
|
|
|
"license": "Apache-2.0",
|
2024-05-07 13:43:51 +00:00
|
|
|
"packageManager": "yarn@3.6.3",
|
2020-08-18 15:40:31 +00:00
|
|
|
"dependencies": {
|
2023-09-12 04:54:27 +00:00
|
|
|
"@actions/core": "^1.10.1",
|
2024-07-03 18:22:10 +00:00
|
|
|
"@docker/actions-toolkit": "^0.31.0",
|
2022-09-19 09:34:47 +00:00
|
|
|
"js-yaml": "^4.1.0",
|
2024-06-10 04:44:49 +00:00
|
|
|
"uuid": "^10.0.0"
|
2020-08-18 15:40:31 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-07-03 18:17:56 +00:00
|
|
|
"@types/js-yaml": "^4.0.9",
|
2024-05-15 11:57:47 +00:00
|
|
|
"@types/node": "^20.12.12",
|
2024-07-03 11:33:09 +00:00
|
|
|
"@types/uuid": "^10.0.0",
|
2024-05-15 11:57:47 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.9.0",
|
|
|
|
"@typescript-eslint/parser": "^7.9.0",
|
|
|
|
"@vercel/ncc": "^0.38.1",
|
|
|
|
"eslint": "^8.57.0",
|
|
|
|
"eslint-config-prettier": "^9.1.0",
|
|
|
|
"eslint-plugin-jest": "^28.5.0",
|
|
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
|
|
"jest": "^29.7.0",
|
|
|
|
"prettier": "^3.2.5",
|
|
|
|
"ts-jest": "^29.1.2",
|
|
|
|
"ts-node": "^10.9.2",
|
|
|
|
"typescript": "^5.4.5"
|
2020-08-18 15:40:31 +00:00
|
|
|
}
|
|
|
|
}
|