-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.12 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"main": "./dist/extension.cjs",
"module": "index.ts",
"dependencies": {
"@types/vscode": "^1.86.0"
},
"devDependencies": {
"@types/bun": "latest",
"@vscode/vsce": "^2.23.0",
"esbuild": "^0.20.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"type": "module",
"scripts": {
"dev": "echo 'Open this directory in VSCode and then run your extension with F5 or `Run and Debug > Run Extension`!'",
"build": "bun run ./scripts/build-with-esbuild.ts",
"watch": "bun run ./scripts/watch-with-esbuild.ts",
"vsce-package": "bun run vsce package",
"package": "bun run build && bun run vsce-package",
"clean": "rm -r ./dist"
},
"//": "START EXTENSION ATTRIBUTES",
"name": "bun-vscode-extension",
"version": "0.0.1",
"description": "Extension description",
"displayName": "Extension display name",
"repository": {
"type": "git",
"url": "https://github.com/YOURNAME"
},
"contributes": {
"commands": [
{
"command": "bun-vscode-extension.helloworld",
"title": "Hello World"
}
]
},
"engines": {
"vscode": "^1.86.0"
}
}