mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
* Improve support for \`debug-adapter-protocol\` * More improvements, fix formatting in debug console * Fix attaching * Prepare for source maps * Start of source map support, breakpoints work * Source map support * add some package.jsons * wip * Update package.json * More fixes * Make source maps safer if exception occurs * Check bun version if it fails * Fix console.log formatting * Fix source maps partly * More source map fixes * Prepare for extension * watch mode with dap * Improve preview code * Prepare for extension 2 --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
23 lines
553 B
JSON
23 lines
553 B
JSON
{
|
|
"name": "bun-release-action",
|
|
"private": true,
|
|
"dependencies": {
|
|
"aws4fetch": "^1.0.17",
|
|
"esbuild": "^0.17.3",
|
|
"jszip": "^3.10.1",
|
|
"octokit": "^2.0.14"
|
|
},
|
|
"devDependencies": {
|
|
"@octokit/types": "^8.1.1",
|
|
"bun-types": "^0.4.0",
|
|
"prettier": "^2.8.2"
|
|
},
|
|
"scripts": {
|
|
"format": "prettier --write src scripts",
|
|
"get-version": "bun scripts/get-version.ts",
|
|
"upload-npm": "bun scripts/upload-npm.ts",
|
|
"upload-assets": "bun scripts/upload-assets.ts",
|
|
"upload-s3": "bun scripts/upload-s3.ts"
|
|
}
|
|
}
|