diff options
author | 2023-09-01 22:16:54 -0700 | |
---|---|---|
committer | 2023-09-01 22:16:54 -0700 | |
commit | 4920f458bc7eb49ab0ae50c3cfdc324e079ffaee (patch) | |
tree | 7712d775285471e946554731852801f4548c1ba9 /packages/bun-vscode/package.json | |
parent | 48cf9dddcb5ff58c22a9155f568bd1def2a35032 (diff) | |
download | bun-4920f458bc7eb49ab0ae50c3cfdc324e079ffaee.tar.gz bun-4920f458bc7eb49ab0ae50c3cfdc324e079ffaee.tar.zst bun-4920f458bc7eb49ab0ae50c3cfdc324e079ffaee.zip |
bun-vscode 0.0.8
Diffstat (limited to '')
-rw-r--r-- | packages/bun-vscode/package.json | 78 |
1 files changed, 39 insertions, 39 deletions
diff --git a/packages/bun-vscode/package.json b/packages/bun-vscode/package.json index 5a444a9fd..39b5d37de 100644 --- a/packages/bun-vscode/package.json +++ b/packages/bun-vscode/package.json @@ -1,6 +1,6 @@ { "name": "bun-vscode", - "version": "0.0.6", + "version": "0.0.8", "author": "oven", "repository": { "type": "git", @@ -16,6 +16,43 @@ "esbuild": "^0.19.2", "typescript": "^5.0.0" }, + "description": "The Visual Studio Code extension for Bun.", + "displayName": "Bun for Visual Studio Code", + "engines": { + "vscode": "^1.60.0" + }, + "extensionKind": [ + "workspace" + ], + "galleryBanner": { + "color": "#3B3738", + "theme": "dark" + }, + "homepage": "https://bun.sh/", + "icon": "assets/icon.png", + "keywords": [ + "bun", + "node.js", + "javascript", + "typescript", + "vscode" + ], + "license": "MIT", + "publisher": "oven", + "scripts": { + "build": "node scripts/build.mjs", + "pretest": "bun run build", + "test": "node scripts/test.mjs", + "prepublish": "npm version patch && bun run build", + "publish": "cd extension && bunx vsce publish" + }, + "workspaceTrust": { + "request": "never" + }, + "workspaces": [ + "../bun-debug-adapter-protocol", + "../bun-inspector-protocol" + ], "activationEvents": [ "onLanguage:javascript", "onLanguage:javascriptreact", @@ -258,42 +295,5 @@ "priority": "default" } ] - }, - "description": "The Visual Studio Code extension for Bun.", - "displayName": "Bun for Visual Studio Code", - "engines": { - "vscode": "^1.60.0" - }, - "extensionKind": [ - "workspace" - ], - "galleryBanner": { - "color": "#3B3738", - "theme": "dark" - }, - "homepage": "https://bun.sh/", - "icon": "assets/icon.png", - "keywords": [ - "bun", - "node.js", - "javascript", - "typescript", - "vscode" - ], - "license": "MIT", - "publisher": "oven", - "scripts": { - "build": "node scripts/build.mjs", - "pretest": "bun run build", - "test": "node scripts/test.mjs", - "prepublish": "npm version patch && bun run build", - "publish": "cd extension && bunx vsce publish" - }, - "workspaceTrust": { - "request": "never" - }, - "workspaces": [ - "../bun-debug-adapter-protocol", - "../bun-inspector-protocol" - ] + } } |