129 lines
3.1 KiB
JSON
129 lines
3.1 KiB
JSON
{
|
|
"name": "superide",
|
|
"version": "0.1.0",
|
|
"publisher": "mengning",
|
|
"engines": {
|
|
"vscode": "^1.65.0"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"displayName": "SuperIDE",
|
|
"description": "",
|
|
"categories": [],
|
|
"keywords": [],
|
|
"main": "./dist/extension",
|
|
"icon": "assets/images/si-logo.png",
|
|
"bugs": {
|
|
"url": "https://gitee.com/SuperIDE/superide/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://gitee.com/SuperIDE/superide.git"
|
|
},
|
|
"activationEvents": [
|
|
"onView:superide.quickAccess",
|
|
"onCommand:superide.showHome"
|
|
],
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "superide.showHome",
|
|
"title": "SuperIDE Home",
|
|
"category": "Super IDE"
|
|
},
|
|
{
|
|
"command": "superide.connectRemoteContainer",
|
|
"title": "Connect to a Remote Container",
|
|
"category": "Super IDE"
|
|
}
|
|
],
|
|
"menus": {
|
|
"file/newFile": [
|
|
{
|
|
"command": "superide.showHome",
|
|
"group": "navigation"
|
|
}
|
|
],
|
|
"touchBar": []
|
|
},
|
|
"viewsContainers": {
|
|
"activitybar": [
|
|
{
|
|
"id": "superide",
|
|
"title": "SuperIDE",
|
|
"icon": "assets/icons/si-activity-icon.svg"
|
|
}
|
|
]
|
|
},
|
|
"views": {
|
|
"superide": [
|
|
{
|
|
"id": "superide.quickAccess",
|
|
"name": "Quick Access",
|
|
"type": "tree"
|
|
}
|
|
]
|
|
},
|
|
"viewsWelcome": [
|
|
{
|
|
"view": "superide.quickAccess",
|
|
"contents": "welcome SuperIDE..."
|
|
}
|
|
],
|
|
"walkthroughs": [
|
|
{
|
|
"id": "superide.welcome",
|
|
"title": "Get started with Super IDE",
|
|
"description": "",
|
|
"steps": []
|
|
}
|
|
],
|
|
"configuration": {
|
|
"type": "object",
|
|
"title": "SuperIDE",
|
|
"properties": {
|
|
"superide.disableSuperIDEHomeStartup": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Disable showing SuperIDE Home at startup"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"compile": "webpack --mode production",
|
|
"vscode:package": "webpack --mode production && vsce package",
|
|
"vscode:publish": "vsce publish",
|
|
"watch": "webpack --mode production --watch",
|
|
"lint": "eslint src --ext ts"
|
|
},
|
|
"dependencies": {
|
|
"fs-plus": "~3.1.1",
|
|
"node-ssh": "^13.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "~7.21.3",
|
|
"@babel/eslint-parser": "~7.21.3",
|
|
"@babel/plugin-proposal-class-properties": "~7.18.6",
|
|
"@babel/preset-env": "~7.20.2",
|
|
"@types/vscode": "~1.65.0",
|
|
"@types/node": "18.x",
|
|
"@vscode/vsce": "^2.29.0",
|
|
"babel-loader": "~9.1.2",
|
|
"eslint-import-resolver-webpack": "~0.13.2",
|
|
"eslint-plugin-import": "~2.27.5",
|
|
"prettier": "~2.8.4",
|
|
"webpack": "~5.76.2",
|
|
"webpack-cli": "~5.0.1",
|
|
"@types/mocha": "^10.0.6",
|
|
"@typescript-eslint/eslint-plugin": "^7.11.0",
|
|
"@typescript-eslint/parser": "^7.11.0",
|
|
"typescript": "^5.4.5",
|
|
"ts-loader": "^9.5.1",
|
|
"@vscode/test-cli": "^0.0.9",
|
|
"@vscode/test-electron": "^2.4.0"
|
|
},
|
|
"extensionDependencies": [
|
|
"ms-vscode.cpptools"
|
|
]
|
|
}
|