Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pratheeshrussell/a1b1803abbbf143fc4806e2db9d94c58 to your computer and use it in GitHub Desktop.
Save pratheeshrussell/a1b1803abbbf143fc4806e2db9d94c58 to your computer and use it in GitHub Desktop.
package.json
{
"name": "flutter-commands",
"displayName": "Flutter Commands",
"description": "An Extension to run commonly used flutter commands",
"publisher": "PratheeshRussell",
"license": "MIT",
"version": "0.0.1",
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Other"
],
"keywords": [
"flutter",
"commands"
],
"activationEvents": [
"onCommand:extension.runBuildInParts",
"onCommand:extension.runBuildFat",
"onCommand:extension.runPackageRepair",
"onCommand:extension.runProjectRepair"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "extension.runBuildInParts",
"title": "Build Split APK",
"category": "Flutter Commands"
},
{
"command": "extension.runBuildFat",
"title": "Build Fat APK",
"category": "Flutter Commands"
},
{
"command": "extension.runPackageRepair",
"title": "Repair Imports",
"category": "Flutter Commands"
},
{
"command": "extension.runProjectRepair",
"title": "Repair Project",
"category": "Flutter Commands"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.1",
"@types/node": "^12.11.7",
"@types/vscode": "^1.43.0",
"eslint": "^6.8.0",
"glob": "^7.1.6",
"mocha": "^7.0.1",
"typescript": "^3.7.5",
"vscode-test": "^1.3.0"
},
"__metadata": {
"publisherDisplayName": "Pratheesh Russell.S"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment