feat:将extension文件拆分成不同功能的独立组件
This commit is contained in:
56
package.json
56
package.json
@ -1,23 +1,62 @@
|
||||
{
|
||||
"name": "ic-coder",
|
||||
"name": "ic-coder-plugin",
|
||||
"displayName": "IC Coder plugin",
|
||||
"description": "Agentic Verilog Coding Platform for Real-World FPGAs",
|
||||
"version": "0.0.1",
|
||||
"version": "0.0.2",
|
||||
"engines": {
|
||||
"vscode": "^1.107.0"
|
||||
"vscode": "^1.106.3"
|
||||
},
|
||||
"icon": "media/IC Coder主页标志.png",
|
||||
"categories": [
|
||||
"Other"
|
||||
],
|
||||
"activationEvents": [],
|
||||
"keywords": [
|
||||
"IC",
|
||||
"coder",
|
||||
"verilog",
|
||||
"FPGA",
|
||||
"eda",
|
||||
"assistant"
|
||||
],
|
||||
"activationEvents": [
|
||||
"onCommand:ic-coder.openPanel",
|
||||
"onView:ic-coder-sidebar",
|
||||
"onLanguage:verilog",
|
||||
"onLanguage:vhdl",
|
||||
"onStartupFinished"
|
||||
],
|
||||
"main": "./dist/extension.js",
|
||||
"contributes": {
|
||||
"commands": [
|
||||
{
|
||||
"command": "ic-coder.helloWorld",
|
||||
"title": "Hello World"
|
||||
"command": "ic-coder.openPanel",
|
||||
"title": "打开 IC Coder 助手",
|
||||
"category": "IC Coder"
|
||||
},
|
||||
{
|
||||
"command": "ic-coder.openChat",
|
||||
"title": "IC Coder: 打开聊天",
|
||||
"category": "IC Coder"
|
||||
}
|
||||
]
|
||||
],
|
||||
"viewsContainers": {
|
||||
"activitybar": [
|
||||
{
|
||||
"id": "ic-coder-sidebar",
|
||||
"title": "IC Coder",
|
||||
"icon": "media/图案(方底).png"
|
||||
}
|
||||
]
|
||||
},
|
||||
"views": {
|
||||
"ic-coder-sidebar": [
|
||||
{
|
||||
"id": "ic-coder.mainView",
|
||||
"name": "IC 助手",
|
||||
"type": "webview"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"vscode:prepublish": "pnpm run package",
|
||||
@ -28,7 +67,8 @@
|
||||
"watch-tests": "tsc -p . -w --outDir out",
|
||||
"pretest": "pnpm run compile-tests && pnpm run compile && pnpm run lint",
|
||||
"lint": "eslint src",
|
||||
"test": "vscode-test"
|
||||
"test": "vscode-test",
|
||||
"build": "pnpm run compile"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/vscode": "^1.107.0",
|
||||
|
||||
Reference in New Issue
Block a user