{ "name": "coderoad", "version": "0.16.1", "description": "Play interactive coding tutorials in your editor", "keywords": [ "tutorial", "learn", "education", "teach", "training" ], "homepage": "https://github.com/coderoad/coderoad-vscode", "bugs": { "url": "https://github.com/coderoad/coderoad-vscode/issues", "email": "coderoadapp@gmail.com" }, "repository": { "type": "git", "url": "https://github.com/coderoad/coderoad-vscode.git" }, "license": "SEE LICENSE IN LICENSE.md", "author": { "name": "Shawn McKay " }, "main": "./build/extension.js", "scripts": { "build": "./scripts/build.sh", "postinstall": "node ./node_modules/vscode/bin/install", "install-all": "yarn && yarn --cwd web-app", "lint": "eslint web-app/src/**/*.ts src/**/*.ts", "package": "./scripts/package.sh", "storybook": "yarn --cwd web-app storybook", "test": "jest", "watch": "tsc -watch -p ./" }, "dependencies": { "chokidar": "3.5.2", "dotenv": "^8.2.0", "eslint": "7.26.0", "git-url-parse": "11.6.0", "jest": "26.6.3", "jsdom": "16.5.3", "node-fetch": "2.6.1", "semver": "7.3.5", "ts-jest": "26.5.6", "typescript": "4.4.4", "vscode-extension-telemetry": "0.1.7" }, "devDependencies": { "@types/assert": "^1.5.6", "@types/events": "3.0.0", "@types/jest": "26.0.23", "@types/jsdom": "^16.2.13", "@types/node": "15.0.2", "@types/node-fetch": "2.5.10", "@types/semver": "^7.3.9", "@typescript-eslint/eslint-plugin": "4.23.0", "@typescript-eslint/parser": "4.23.0", "eslint-config-prettier": "8.3.0", "eslint-config-react-app": "6.0.0", "eslint-plugin-flowtype": "5.7.2", "eslint-plugin-import": "^2.25.3", "eslint-plugin-jsx-a11y": "^6.5.1", "eslint-plugin-prettier": "3.4.0", "eslint-plugin-react": "^7.27.0", "eslint-plugin-react-hooks": "^4.3.0", "prettier": "^2.4.1", "vscode": "^1.1.37", "vscode-test": "^1.6.1" }, "engines": { "vscode": "^1.39.2" }, "activationEvents": [ "onCommand:coderoad.start", "workspaceContains:/codeally.json" ], "categories": [ "Other" ], "contributes": { "commands": [ { "command": "coderoad.start", "title": "Start", "category": "CodeRoad" } ], "keybindings": [ { "key": "ctrl+enter", "mac": "ctrl+enter", "command": "coderoad.enter" } ] }, "displayName": "CodeRoad", "galleryBanner": { "color": "#272728", "theme": "dark" }, "preview": true, "publisher": "CodeRoad", "icon": "coderoad_icon.png" }