Files
devstar_plugin/package.json

137 lines
3.3 KiB
JSON
Raw Normal View History

2024-06-27 01:20:37 +08:00
{
"name": "devstar",
2024-11-13 02:43:30 +08:00
"version": "0.2.2",
2024-06-27 01:20:37 +08:00
"publisher": "mengning",
"engines": {
"vscode": "^1.65.0"
},
"license": "Apache-2.0",
"displayName": "DevStar",
2024-06-27 01:20:37 +08:00
"description": "",
"categories": [],
"keywords": [],
"main": "./dist/extension",
2024-07-30 19:45:46 +08:00
"icon": "assets/images/devstar-logo.png",
2024-06-27 01:20:37 +08:00
"bugs": {
"url": "https://github.com/mengning/DevStar/issues"
2024-06-27 01:20:37 +08:00
},
"repository": {
"type": "git",
"url": "https://github.com/mengning/DevStar.git"
2024-06-27 01:20:37 +08:00
},
"activationEvents": [
"onView:devstar.quickAccess",
"onCommand:devstar.showHome"
2024-06-27 01:20:37 +08:00
],
"contributes": {
"commands": [
{
"command": "devstar.showHome",
2024-09-18 13:52:19 +08:00
"title": "DevStar Home",
"category": "DevStar"
},
{
"command": "devstar.connectRemoteContainer",
"title": "Connect to a Remote Container",
2024-09-18 13:52:19 +08:00
"category": "DevStar"
2024-06-27 01:20:37 +08:00
}
],
"menus": {
"file/newFile": [
{
"command": "devstar.showHome",
2024-06-27 01:20:37 +08:00
"group": "navigation"
}
],
"touchBar": []
},
"viewsContainers": {
"activitybar": [
{
"id": "devstar",
2024-09-18 13:52:19 +08:00
"title": "DevStar",
2024-07-30 19:45:46 +08:00
"icon": "assets/icons/devstar-activity-icon.svg"
2024-06-27 01:20:37 +08:00
}
]
},
"views": {
"devstar": [
2024-06-27 01:20:37 +08:00
{
"id": "devstar.quickAccess",
2024-06-27 01:20:37 +08:00
"name": "Quick Access",
"type": "tree"
}
]
},
"viewsWelcome": [
{
"view": "devstar.quickAccess",
2024-09-18 13:52:19 +08:00
"contents": "welcome DevStar..."
2024-06-27 01:20:37 +08:00
}
],
"walkthroughs": [
{
"id": "devstar.welcome",
"title": "Get started with DevStar",
2024-06-27 01:20:37 +08:00
"description": "",
"steps": []
}
],
"configuration": {
"type": "object",
2024-09-18 13:52:19 +08:00
"title": "DevStar",
2024-06-27 01:20:37 +08:00
"properties": {
2024-09-18 13:52:19 +08:00
"devstar.disableDevStarHomeStartup": {
2024-06-27 01:20:37 +08:00
"type": "boolean",
"default": false,
2024-09-18 13:52:19 +08:00
"description": "Disable showing DevStar Home at startup"
},
"devstar.devstarHomePage": {
"type": "string",
"default": "https://devstar.cn/devstar-home",
"description": "DevStar Home Page"
2024-06-27 01:20:37 +08:00
}
}
}
},
"scripts": {
2024-11-24 06:33:09 +00:00
"build": "webpack --mode production",
"package": "webpack --mode production && vsce package",
"publish": "vsce publish",
"watch": "webpack --mode production --watch",
2024-11-24 06:33:09 +00:00
"format": "eslint src --ext ts"
2024-06-27 01:20:37 +08:00
},
"dependencies": {
"fs-plus": "~3.1.1",
2024-10-28 14:58:10 +08:00
"node-ssh": "^13.2.0",
"sshpk": "^1.18.0"
2024-06-27 01:20:37 +08:00
},
"devDependencies": {
"@babel/core": "~7.21.3",
"@babel/eslint-parser": "~7.21.3",
"@babel/plugin-proposal-class-properties": "~7.18.6",
2024-07-11 10:55:50 +08:00
"@babel/plugin-proposal-object-rest-spread": "~7.18.9",
2024-06-27 01:20:37 +08:00
"@babel/preset-env": "~7.20.2",
2024-07-11 10:55:50 +08:00
"@babel/preset-typescript": "^7.18.6",
"@types/mocha": "^10.0.6",
2024-07-02 12:15:39 +08:00
"@types/node": "18.x",
2024-07-11 10:55:50 +08:00
"@types/vscode": "~1.65.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.4.0",
2024-06-27 01:20:37 +08:00
"@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",
2024-07-02 12:15:39 +08:00
"ts-loader": "^9.5.1",
2024-07-11 10:55:50 +08:00
"typescript": "^5.4.5",
"webpack": "~5.76.2",
"webpack-cli": "~5.0.1"
2024-06-27 01:20:37 +08:00
},
"extensionDependencies": [
"ms-vscode.cpptools"
]
}