{ "name": "cargo-play", "displayName": "CargoPlay", "description": "A local Rust playground", "version": "0.0.1", "publisher": "fanzeyi", "repository": { "type": "git", "url": "https://github.com/fanzeyi/cargo-play" }, "engines": { "vscode": "^1.43.0" }, "icon": "images/cargo_play_icon.png", "keywords": [ "rust" ], "categories": [ "Programming Languages" ], "activationEvents": [ "onCommand:extension.cargoPlay", "onCommand:extension.installCargoPlay" ], "main": "./out/extension.js", "contributes": { "commands": [ { "command": "extension.cargoPlay", "title": "CargoPlay: Run" }, { "command": "extension.installCargoPlay", "title": "CargoPlay: Install" } ] }, "scripts": { "vscode:prepublish": "npm run compile", "compile": "tsc -p ./", "lint": "eslint src --ext ts", "watch": "tsc -watch -p ./", "pretest": "npm run compile && npm run lint", "test": "node ./out/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", "@typescript-eslint/parser": "^2.18.0", "@typescript-eslint/eslint-plugin": "^2.18.0", "glob": "^7.1.6", "mocha": "^7.0.1", "typescript": "^3.7.5", "vscode-test": "^1.3.0" } }