package.json (1860B)
1 { 2 "name": "vscode-githrun", 3 "displayName": "Githrun", 4 "description": "Instantly run Python scripts from GitHub URLs directly in VS Code.", 5 "version": "0.0.4", 6 "publisher": "notamitgamer", 7 "icon": "icon.png", 8 "engines": { 9 "vscode": "^1.80.0" 10 }, 11 "repository": { 12 "type": "git", 13 "url": "https://github.com/notamitgamer/githrun.git" 14 }, 15 "categories": [ 16 "Other", 17 "Programming Languages" 18 ], 19 "keywords": [ 20 "python", 21 "github", 22 "gist", 23 "script", 24 "runner", 25 "remote" 26 ], 27 "activationEvents": [ 28 "onLanguage:markdown", 29 "onLanguage:python", 30 "onLanguage:plaintext" 31 ], 32 "main": "./out/extension.js", 33 "contributes": { 34 "commands": [ 35 { 36 "command": "githrun.runUrl", 37 "title": "Run with Githrun", 38 "icon": "$(play)" 39 }, 40 { 41 "command": "githrun.installCli", 42 "title": "Install Githrun CLI" 43 }, 44 { 45 "command": "githrun.runInput", 46 "title": "Githrun: Run from URL..." 47 }, 48 { 49 "command": "githrun.runSelection", 50 "title": "Githrun: Run Selected Text" 51 } 52 ], 53 "menus": { 54 "editor/context": [ 55 { 56 "command": "githrun.runSelection", 57 "group": "githrun", 58 "when": "editorHasSelection" 59 } 60 ] 61 }, 62 "configuration": { 63 "type": "object", 64 "title": "Githrun", 65 "properties": { 66 "githrun.autoInstallDeps": { 67 "type": "boolean", 68 "default": false, 69 "description": "Automatically use --auto-install when running scripts." 70 } 71 } 72 } 73 }, 74 "scripts": { 75 "vscode:prepublish": "npm run compile", 76 "compile": "tsc -p ./", 77 "watch": "tsc -watch -p ./" 78 }, 79 "devDependencies": { 80 "@types/vscode": "^1.80.0", 81 "@types/node": "16.x", 82 "typescript": "^5.0.0" 83 } 84 }