{ "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" } }