-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.92 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
{
"name": "nde-hub",
"version": "1.0.0",
"publisher": "silarim",
"author": "Sila Rim",
"displayName": "NDE Hub",
"description": "All-in-one developer hub — extension bundle manager, AI chat integration, and upcoming agent/MCP/skills/RAG/LLM tools with visual UI",
"license": "MIT",
"icon": "assets/npack.jpg",
"galleryBanner": { "color": "#47B784", "theme": "dark" },
"engines": { "vscode": "^1.95.0" },
"categories": ["Extension Packs", "Other"],
"keywords": ["extension pack", "developer hub", "bundle manager", "AI tools", "MCP"],
"repository": { "url": "https://github.com/next-dev-team/npack" },
"homepage": "https://github.com/next-dev-team/npack",
"bugs": { "url": "https://github.com/next-dev-team/npack/issues" },
"activationEvents": ["onStartupFinished"],
"main": "./out/extension.js",
"contributes": {
"commands": [
{ "command": "npack.configure", "title": "Configure NDE Hub Bundles", "icon": "$(extensions)" },
{ "command": "npack.reset", "title": "Reset NDE Hub Config" },
{ "command": "npack.showInstalled", "title": "Show Installed Extensions" }
],
"viewsContainers": {
"activitybar": [
{ "id": "npack", "title": "NDE Hub", "icon": "assets/npack-icon.svg" }
]
},
"views": {
"npack": [
{ "id": "npack.sidebar", "name": "NDE Hub", "type": "webview" }
]
},
"menus": {
"view/title": [
{ "command": "npack.configure", "when": "view == npack.sidebar", "group": "navigation" }
]
}
},
"scripts": {
"vscode:prepublish": "pnpm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "biome check src",
"lint:fix": "biome check --write src",
"format": "biome format --write src"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@types/node": "^22.0.0",
"@types/vscode": "^1.95.0",
"@vscode/vsce": "^3.7.1",
"typescript": "^5.9.3"
}
}