setup-bun/package.json

38 lines
714 B
JSON
Raw Normal View History

2022-07-11 08:44:25 +02:00
{
2022-07-27 08:18:27 +02:00
"version": "0.1.6",
2022-07-11 08:44:25 +02:00
"name": "setup-bun",
2022-07-11 09:45:23 +02:00
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc -p ."
},
2022-07-12 11:03:29 +02:00
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/xHyroM/setup-bun.git"
},
"bugs": {
"url": "https://github.com/xHyroM/setup-bun/issues"
},
"keywords": [
"bun",
"github",
"actions",
"setup"
],
"author": "xHyroM",
"license": "MIT",
2022-07-11 09:45:23 +02:00
"dependencies": {
2022-07-12 09:00:22 +02:00
"@actions/cache": "^3.0.0",
2022-07-11 09:45:23 +02:00
"@actions/core": "^1.9.0",
"@actions/tool-cache": "^2.0.1",
2022-07-28 08:42:43 +02:00
"nanoid": "^4.0.0",
2022-07-11 09:59:12 +02:00
"node-fetch": "^3.2.6"
2022-07-12 11:03:29 +02:00
},
"devDependencies": {
"bun-types": "^0.0.83",
"typescript": "^4.7.4"
2022-07-11 08:44:25 +02:00
}
2022-07-28 08:42:43 +02:00
}