setup-bun/package.json

42 lines
1.2 KiB
JSON
Raw Normal View History

2022-07-11 08:44:25 +02:00
{
2023-02-22 17:47:24 -08:00
"private": true,
2022-07-11 08:44:25 +02:00
"name": "setup-bun",
"version": "2.0.1",
2023-02-22 17:47:24 -08:00
"description": "Setup Bun on GitHub Actions.",
2022-07-12 11:03:29 +02:00
"keywords": [
"bun",
2023-02-22 17:47:24 -08:00
"bun.js",
2022-07-12 11:03:29 +02:00
"github",
"actions",
"setup"
],
"homepage": "https://bun.sh/",
"main": "dist/index.js",
2023-02-22 17:47:24 -08:00
"repository": "git@github.com:oven-sh/setup-bun.git",
"bugs": "https://github.com/oven-sh/setup-bun/issues",
2022-07-12 11:03:29 +02:00
"license": "MIT",
2023-02-22 17:47:24 -08:00
"author": "xHyroM",
"scripts": {
"format": "prettier --write src *.yml *.json *.md",
"build": "esbuild --target=node20 --outfile=dist/setup/index.js --bundle --minify --platform=node --format=cjs src/index.ts && esbuild --target=node20 --outfile=dist/cache-save/index.js --bundle --minify --platform=node --format=cjs src/cache-save.ts",
"start": "npm run build && node dist/setup/index.js"
2023-02-22 17:47:24 -08:00
},
2022-07-11 09:45:23 +02:00
"dependencies": {
2023-02-22 17:47:24 -08:00
"@actions/cache": "^3.1.4",
2022-10-29 10:03:51 +02:00
"@actions/core": "^1.10.0",
2023-02-22 17:47:24 -08:00
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.4.0",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1"
2022-07-12 11:03:29 +02:00
},
"devDependencies": {
"@types/node": "^20.8.2",
"esbuild": "^0.19.2",
2023-02-22 17:47:24 -08:00
"prettier": "^2.8.4",
"typescript": "^4.9.5"
2023-02-22 17:47:24 -08:00
},
"prettier": {
"quoteProps": "preserve"
2022-07-11 08:44:25 +02:00
}
2023-02-22 17:47:24 -08:00
}