131 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			131 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
  "name": "devstar",
 | 
						|
  "version": "0.2.1",
 | 
						|
  "publisher": "mengning",
 | 
						|
  "engines": {
 | 
						|
    "vscode": "^1.65.0"
 | 
						|
  },
 | 
						|
  "license": "Apache-2.0",
 | 
						|
  "displayName": "DevStar",
 | 
						|
  "description": "",
 | 
						|
  "categories": [],
 | 
						|
  "keywords": [],
 | 
						|
  "main": "./dist/extension",
 | 
						|
  "icon": "assets/images/devstar-logo.png",
 | 
						|
  "bugs": {
 | 
						|
    "url": "https://gitee.com/SuperIDE/superide/issues"
 | 
						|
  },
 | 
						|
  "repository": {
 | 
						|
    "type": "git",
 | 
						|
    "url": "https://gitee.com/SuperIDE/superide.git"
 | 
						|
  },
 | 
						|
  "activationEvents": [
 | 
						|
    "onView:devstar.quickAccess",
 | 
						|
    "onCommand:devstar.showHome"
 | 
						|
  ],
 | 
						|
  "contributes": {
 | 
						|
    "commands": [
 | 
						|
      {
 | 
						|
        "command": "devstar.showHome",
 | 
						|
        "title": "DevStar Home",
 | 
						|
        "category": "DevStar"
 | 
						|
      },
 | 
						|
      {
 | 
						|
        "command": "devstar.connectRemoteContainer",
 | 
						|
        "title": "Connect to a Remote Container",
 | 
						|
        "category": "DevStar"
 | 
						|
      }
 | 
						|
    ],
 | 
						|
    "menus": {
 | 
						|
      "file/newFile": [
 | 
						|
        {
 | 
						|
          "command": "devstar.showHome",
 | 
						|
          "group": "navigation"
 | 
						|
        }
 | 
						|
      ],
 | 
						|
      "touchBar": []
 | 
						|
    },
 | 
						|
    "viewsContainers": {
 | 
						|
      "activitybar": [
 | 
						|
        {
 | 
						|
          "id": "devstar",
 | 
						|
          "title": "DevStar",
 | 
						|
          "icon": "assets/icons/devstar-activity-icon.svg"
 | 
						|
        }
 | 
						|
      ]
 | 
						|
    },
 | 
						|
    "views": {
 | 
						|
      "devstar": [
 | 
						|
        {
 | 
						|
          "id": "devstar.quickAccess",
 | 
						|
          "name": "Quick Access",
 | 
						|
          "type": "tree"
 | 
						|
        }
 | 
						|
      ]
 | 
						|
    },
 | 
						|
    "viewsWelcome": [
 | 
						|
      {
 | 
						|
        "view": "devstar.quickAccess",
 | 
						|
        "contents": "welcome DevStar..."
 | 
						|
      }
 | 
						|
    ],
 | 
						|
    "walkthroughs": [
 | 
						|
      {
 | 
						|
        "id": "devstar.welcome",
 | 
						|
        "title": "Get started with Super IDE",
 | 
						|
        "description": "",
 | 
						|
        "steps": []
 | 
						|
      }
 | 
						|
    ],
 | 
						|
    "configuration": {
 | 
						|
      "type": "object",
 | 
						|
      "title": "DevStar",
 | 
						|
      "properties": {
 | 
						|
        "devstar.disableDevStarHomeStartup": {
 | 
						|
          "type": "boolean",
 | 
						|
          "default": false,
 | 
						|
          "description": "Disable showing DevStar 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/plugin-proposal-object-rest-spread": "~7.18.9",
 | 
						|
    "@babel/preset-env": "~7.20.2",
 | 
						|
    "@babel/preset-typescript": "^7.18.6",
 | 
						|
    "@types/mocha": "^10.0.6",
 | 
						|
    "@types/node": "18.x",
 | 
						|
    "@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",
 | 
						|
    "@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",
 | 
						|
    "ts-loader": "^9.5.1",
 | 
						|
    "typescript": "^5.4.5",
 | 
						|
    "webpack": "~5.76.2",
 | 
						|
    "webpack-cli": "~5.0.1"
 | 
						|
  },
 | 
						|
  "extensionDependencies": [
 | 
						|
    "ms-vscode.cpptools"
 | 
						|
  ]
 | 
						|
}
 |