mirror of
				https://github.moeyy.xyz/https://github.com/docker/setup-buildx-action
				synced 2025-10-30 03:04:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
|   "name": "docker-setup-buildx",
 | |
|   "description": "Set up Docker Buildx",
 | |
|   "main": "lib/main.js",
 | |
|   "scripts": {
 | |
|     "build": "ncc build src/main.ts --source-map --minify --license licenses.txt",
 | |
|     "lint": "eslint src/**/*.ts __tests__/**/*.ts",
 | |
|     "format": "eslint --fix src/**/*.ts __tests__/**/*.ts",
 | |
|     "test": "jest --coverage",
 | |
|     "all": "yarn run build && yarn run format && yarn test"
 | |
|   },
 | |
|   "repository": {
 | |
|     "type": "git",
 | |
|     "url": "git+https://github.com/docker/setup-buildx-action.git"
 | |
|   },
 | |
|   "keywords": [
 | |
|     "actions",
 | |
|     "docker",
 | |
|     "buildx"
 | |
|   ],
 | |
|   "author": "Docker",
 | |
|   "contributors": [
 | |
|     {
 | |
|       "name": "CrazyMax",
 | |
|       "url": "https://crazymax.dev"
 | |
|     }
 | |
|   ],
 | |
|   "license": "Apache-2.0",
 | |
|   "dependencies": {
 | |
|     "@actions/core": "^1.10.0",
 | |
|     "@actions/exec": "^1.1.1",
 | |
|     "@docker/actions-toolkit": "^0.1.0",
 | |
|     "js-yaml": "^4.1.0",
 | |
|     "uuid": "^9.0.0"
 | |
|   },
 | |
|   "devDependencies": {
 | |
|     "@types/node": "^16.18.21",
 | |
|     "@typescript-eslint/eslint-plugin": "^5.56.0",
 | |
|     "@typescript-eslint/parser": "^5.56.0",
 | |
|     "@vercel/ncc": "^0.36.1",
 | |
|     "eslint": "^8.36.0",
 | |
|     "eslint-config-prettier": "^8.8.0",
 | |
|     "eslint-plugin-jest": "^27.2.1",
 | |
|     "eslint-plugin-prettier": "^4.2.1",
 | |
|     "jest": "^29.5.0",
 | |
|     "prettier": "^2.8.7",
 | |
|     "ts-jest": "^29.0.5",
 | |
|     "ts-node": "^10.9.1",
 | |
|     "typescript": "^4.9.5"
 | |
|   }
 | |
| }
 | 
