mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-02-23 02:30:26 +08:00
44 lines
1003 B
JSON
44 lines
1003 B
JSON
{
|
|
"private": true,
|
|
"name": "setup-bun",
|
|
"version": "1.0.0",
|
|
"description": "Setup Bun on GitHub Actions.",
|
|
"keywords": [
|
|
"bun",
|
|
"bun.js",
|
|
"github",
|
|
"actions",
|
|
"setup"
|
|
],
|
|
"homepage": "https://bun.sh",
|
|
"type": "module",
|
|
"main": "dist/action.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",
|
|
"build": "tsc -p .",
|
|
"start": "ts-node-esm src/action.ts",
|
|
"start:dist": "node dist/action.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": {
|
|
"prettier": "^2.8.4",
|
|
"typescript": "^4.9.5",
|
|
"ts-node": "^10.9.1",
|
|
"esbuild": "^0.17.10"
|
|
},
|
|
"prettier": {
|
|
"quoteProps": "preserve"
|
|
}
|
|
}
|