-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.55 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"main": "./dist/extension.cjs",
"module": "index.ts",
"extensionKind": [
"ui",
"workspace"
],
"dependencies": {
"@types/vscode": "^1.86.0",
"vscode-uri": "^3.0.6"
},
"devDependencies": {
"@types/bun": "latest",
"@vscode/vsce": "^2.31.1",
"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",
"local": "bun run server.ts"
},
"//": "START EXTENSION ATTRIBUTES",
"name": "qoa-preview",
"version": "0.1.0",
"description": "Play QOA audio files.",
"displayName": "QOA Preview",
"publisher": "braheezy",
"repository": {
"type": "git",
"url": "https://github.com/braheezy/vscode-qoa-preview"
},
"license": "MIT",
"homepage": "https://github.com/braheezy/vscode-qoa-preview",
"bugs": {
"url": "https://github.com/braheezy/vscode-qoa-preview/issues"
},
"icon": "images/qoa-logo-new.png",
"contributes": {
"customEditors": [
{
"viewType": "braheezy.qoa-preview",
"displayName": "QOA Preview",
"selector": [
{
"filenamePattern": "*.qoa"
}
]
}
]
},
"engines": {
"vscode": "^1.86.0"
}
}