setup-bun/package.json

42 lines
1.0 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",
2023-02-22 17:47:24 -08:00
"version": "1.0.0",
"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"
],
2023-02-22 17:47:24 -08:00
"homepage": "https://bun.sh",
"main": "dist/action.js",
"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=node16 --outdir=dist --bundle --platform=node --format=cjs src/action.ts",
"start": "bun run build && node dist/action.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
}