40 lines
884 B
JSON
40 lines
884 B
JSON
{
|
|
"name": "dsc-platform",
|
|
"displayName": "数字卫星构建平台",
|
|
"version": "1.1.1",
|
|
"publisher": "njust-micro-nano-lab",
|
|
"description": "一个用于快速构建数字卫星的平台",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "http://117.72.162.127:3000/xb/vs-p.git"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.67.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"onCommand:open_DSCP"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "open_DSCP",
|
|
"title": "打开数字卫星构建平台",
|
|
"category": "平台测试"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "npm run compile",
|
|
"compile": "tsc -p ./",
|
|
"watch": "tsc -watch -p ./",
|
|
"package": "vsce package"
|
|
},
|
|
"devDependencies": {
|
|
"@types/vscode": "^1.67.0",
|
|
"typescript": "^4.9.5"
|
|
}
|
|
} |