mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-02-23 02:30:26 +08:00
42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"private": true,
|
|
"name": "setup-bun",
|
|
"version": "1.1.1",
|
|
"description": "Setup Bun on GitHub Actions.",
|
|
"keywords": [
|
|
"bun",
|
|
"bun.js",
|
|
"github",
|
|
"actions",
|
|
"setup"
|
|
],
|
|
"homepage": "https://bun.sh/",
|
|
"main": "dist/index.js",
|
|
"repository": "git@github.com:oven-sh/setup-bun.git",
|
|
"bugs": "https://github.com/oven-sh/setup-bun/issues",
|
|
"license": "MIT",
|
|
"author": "xHyroM",
|
|
"scripts": {
|
|
"format": "prettier --write src *.yml *.json *.md",
|
|
"build": "esbuild --target=node20 --outdir=dist --bundle --minify --platform=node --format=cjs src/index.ts",
|
|
"start": "npm run build && node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@actions/cache": "^3.1.4",
|
|
"@actions/core": "^1.10.0",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/glob": "^0.4.0",
|
|
"@actions/io": "^1.1.2",
|
|
"@actions/tool-cache": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.8.2",
|
|
"esbuild": "^0.19.2",
|
|
"prettier": "^2.8.4",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"prettier": {
|
|
"quoteProps": "preserve"
|
|
}
|
|
}
|