Files
devstar_plugin/package.json

140 lines
3.5 KiB
JSON
Raw Normal View History

2024-06-27 01:20:37 +08:00
{
"name": "devstar",
2025-04-22 22:32:06 +08:00
"displayName": "%displayName%",
"description": "%description%",
2025-06-17 13:04:06 +08:00
"version": "0.3.8",
2025-04-22 22:32:06 +08:00
"keywords": [],
2024-06-27 01:20:37 +08:00
"publisher": "mengning",
"engines": {
2025-04-22 22:22:42 +08:00
"vscode": "^1.75.0"
2024-06-27 01:20:37 +08:00
},
2025-04-22 22:32:06 +08:00
"l10n": "./l10n",
2024-06-27 01:20:37 +08:00
"license": "Apache-2.0",
"categories": [],
"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",
"onUri"
2024-06-27 01:20:37 +08:00
],
"contributes": {
"commands": [
{
"command": "devstar.showHome",
2025-04-22 22:32:06 +08:00
"title": "%devstar.showHome.title%",
2024-09-18 13:52:19 +08:00
"category": "DevStar"
},
{
"command": "devstar.connectRemoteContainer",
2025-04-22 22:32:06 +08:00
"title": "%devstar.connectRemoteContainer.title%",
2024-09-18 13:52:19 +08:00
"category": "DevStar"
2024-06-27 01:20:37 +08:00
}
],
2025-06-16 15:28:27 +08:00
"uriHandlers": [
{
"protocol": "vscode",
"path": "/openProject"
}
],
2025-04-22 22:32:06 +08:00
"views": {
"devstarListView": [
2024-06-27 01:20:37 +08:00
{
2025-04-22 22:32:06 +08:00
"id": "devstar.quickAccess",
"name": "%devstar.quickAccess.title%",
"type": "tree"
2024-06-27 01:20:37 +08:00
}
2025-04-22 22:32:06 +08:00
]
2024-06-27 01:20:37 +08:00
},
"viewsContainers": {
"activitybar": [
{
2025-04-22 22:32:06 +08:00
"id": "devstarListView",
"title": "%devstar.devstar.title%",
2024-07-30 19:45:46 +08:00
"icon": "assets/icons/devstar-activity-icon.svg"
2024-06-27 01:20:37 +08:00
}
]
},
"viewsWelcome": [
{
"view": "devstar.quickAccess",
2025-04-22 22:32:06 +08:00
"contents": "%devstar.welcome.title%"
2024-06-27 01:20:37 +08:00
}
],
2025-04-22 22:32:06 +08:00
"menus": {
"file/newFile": [
{
"command": "devstar.showHome",
"group": "navigation"
}
],
"touchBar": []
},
2024-06-27 01:20:37 +08:00
"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.devstarDomain": {
"type": "string",
"default": "https://devstar.cn/",
"description": "DevStar Domain URL"
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": {
"axios": "^1.7.9",
"cheerio": "^1.0.0",
"fs-plus": "~3.1.1",
2024-10-28 14:58:10 +08:00
"node-ssh": "^13.2.0",
"semver": "^7.7.2",
2024-10-28 14:58:10 +08:00
"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",
2025-04-22 22:22:42 +08:00
"@types/vscode": "~1.75.0",
2024-07-11 10:55:50 +08:00
"@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"
]
}