{ "name": "coderoad-vscode", "version": "0.0.1", "description": "Interactive tutorials in your editor", "homepage": "https://github.com/shmck/coderoad-vscode/README.md", "bugs": { "url": "https://github.com/shmck/coderoad-vscode/issues", "email": "shawn.j.mckay@gmail.com" }, "repository": { "type": "git", "url": "https://github.com/shmck/coderoad-vscode.git" }, "license": "SEE LICENSE IN LICENSE.md", "author": { "name": "Shawn McKay " }, "main": "./build/extension.js", "scripts": { "build": "rm -rf build && concurrently \"npm run build:ext\" \"npm run build:web\"", "build:ext": "npm run compile", "build:web": "cd web-app && npm run build", "compile": "tsc -p ./", "postinstall": "node ./node_modules/vscode/bin/install", "machine": "node ./out/state/index.js", "storybook": "cd web-app && npm run storybook", "test:ext": "npm run build && node ./node_modules/vscode/bin/test", "test": "jest", "vscode:prepublish": "npm run build", "watch": "tsc -watch -p ./" }, "dependencies": { "dotenv": "^8.1.0", "graphql": "^14.5.3", "graphql-request": "^1.8.2", "graphql-tag": "^2.10.1", "vscode": "^1.1.36", "xstate": "^4.6.7" }, "devDependencies": { "@types/dotenv": "^6.1.1", "@types/graphql": "^14.5.0", "@types/jest": "^24.0.18", "@types/node": "^12.7.2", "concurrently": "^4.1.2", "jest": "24.8.0", "prettier": "^1.18.2", "ts-jest": "^24.0.2", "tslint": "^5.19.0", "tslint-config-prettier": "^1.18.0", "typescript": "^3.5.3" }, "engines": { "vscode": "^1.34.0" }, "activationEvents": [ "onCommand:coderoad.start" ], "categories": [ "Other" ], "contributes": { "commands": [ { "command": "coderoad.start", "title": "Start", "category": "CodeRoad" } ] }, "displayName": "CodeRoad", "galleryBanner": { "color": "#C80000", "theme": "dark" }, "publisher": "Shawn McKay" }