第一次提交vscode插件代码
This commit is contained in:
39
package.json
Normal file
39
package.json
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "dsc_platform",
|
||||
"displayName": "数字卫星构建平台",
|
||||
"version": "1.0.0",
|
||||
"publisher": "njust_Micro-Nano Satellite Laboratory",
|
||||
"description": "一个用于快速构建数字卫星的平台",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/your-username/DSCP.git"
|
||||
},
|
||||
"engines": {
|
||||
"vscode": "^1.67.0"
|
||||
},
|
||||
"categories": [
|
||||
"Other"
|
||||
],
|
||||
"activationEvents": [
|
||||
"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 ./"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/vscode": "^1.67.0",
|
||||
"typescript": "^4.9.5"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user