-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.57 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.57 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "beatbox",
"displayName": "BeatBox",
"description": "Play local music in the VS Code sidebar with a polished playlist UI and immersive bundled visualizers.",
"version": "1.0.1",
"publisher": "pinkpixel",
"license": "SEE LICENSE IN LICENSE",
"icon": "icon.png",
"galleryBanner": {
"color": "#120813",
"theme": "dark"
},
"pricing": "Free",
"author": {
"name": "Pink Pixel",
"email": "admin@pinkpixel.dev",
"url": "https://pinkpixel.dev"
},
"homepage": "https://github.com/pinkpixel-dev/beatbox#readme",
"repository": {
"type": "git",
"url": "https://github.com/pinkpixel-dev/beatbox.git"
},
"bugs": {
"url": "https://github.com/pinkpixel-dev/beatbox/issues",
"email": "admin@pinkpixel.dev"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Visualization",
"Other"
],
"keywords": [
"audio",
"music",
"music player",
"audio visualizer",
"visualizer",
"playlist",
"canvas",
"sidebar",
"webview",
"local playback",
"beatbox"
],
"activationEvents": [
"onView:beatbox.sidebar",
"onView:beatbox.explorer",
"onCommand:beatbox.focus"
],
"main": "./out/extension.js",
"workspaces": [
"webview-ui"
],
"contributes": {
"commands": [
{
"command": "beatbox.focus",
"title": "BeatBox: Focus Sidebar"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "beatbox",
"title": "BeatBox",
"icon": "media/beatbox.svg"
}
]
},
"views": {
"explorer": [
{
"type": "webview",
"id": "beatbox.explorer",
"name": "BeatBox"
}
],
"beatbox": [
{
"type": "webview",
"id": "beatbox.sidebar",
"name": "BeatBox"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "npm run typecheck:webview && npm run build:webview && tsc -p ./",
"build:webview": "npm --workspace webview-ui run build",
"typecheck:webview": "npm --workspace webview-ui run typecheck",
"watch": "tsc -w -p ./",
"watch:webview": "npm --workspace webview-ui run dev",
"watch:all": "npm-run-all -p watch watch:webview",
"check": "npm run build",
"package": "mkdir -p dist && vsce package --allow-missing-repository --out dist/beatbox-${npm_package_version}.vsix"
},
"devDependencies": {
"@types/node": "^24.7.2",
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^3.6.2",
"npm-run-all": "^4.1.5",
"typescript": "^6.0.2"
}
}