{ "name": "coderoad", "version": "0.14.0", "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.4.2", "dotenv": "^8.2.0", "eslint": "^7.7.0", "git-url-parse": "^11.1.3", "jest": "^26.4.0", "jsdom": "^16.4.0", "node-fetch": "^2.6.0", "semver": "^7.3.2", "ts-jest": "^26.2.0", "typescript": "^3.9.7", "vscode-extension-telemetry": "^0.1.6" }, "devDependencies": { "@types/assert": "^1.5.1", "@types/jest": "^26.0.10", "@types/jsdom": "^16.2.3", "@types/node": "^14.0.27", "@types/node-fetch": "^2.5.7", "@types/semver": "^7.3.2", "@typescript-eslint/eslint-plugin": "^3.9.0", "@typescript-eslint/parser": "^3.9.0", "eslint-config-prettier": "^6.11.0", "eslint-config-react-app": "^5.2.1", "eslint-plugin-flowtype": "^5.2.0", "eslint-plugin-import": "^2.22.0", "eslint-plugin-jsx-a11y": "^6.3.1", "eslint-plugin-prettier": "^3.1.4", "eslint-plugin-react": "^7.20.6", "eslint-plugin-react-hooks": "^4.0.8", "prettier": "2.0.5", "vscode": "^1.1.37", "vscode-test": "^1.4.0" }, "engines": { "vscode": "^1.39.2" }, "activationEvents": [ "onCommand:coderoad.start" ], "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" }