Files
devstar_plugin/package.json
2024-07-02 12:15:39 +08:00

135 lines
3.3 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": {
"build": "webpack --mode production",
"vscode:package": "webpack --mode production && vsce package",
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"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"
]
}