|
| 1 | +{ |
| 2 | + "name": "syntax_tree", |
| 3 | + "displayName": "Syntax Tree", |
| 4 | + "description": "VSCode integration for syntax tree", |
| 5 | + "version": "0.1.0", |
| 6 | + "publisher": "kddnewton", |
| 7 | + "repository": { |
| 8 | + "type": "git", |
| 9 | + "url": "https://github.com/kddnewton/syntax_tree.git" |
| 10 | + }, |
| 11 | + "license": "MIT", |
| 12 | + "bugs": { |
| 13 | + "url": "https://github.com/kddnewton/syntax_tree/issues" |
| 14 | + }, |
| 15 | + "engines": { |
| 16 | + "vscode": "^1.46.0" |
| 17 | + }, |
| 18 | + "activationEvents": [ |
| 19 | + "onLanguage:ruby", |
| 20 | + "workspaceContains:Gemfile.lock", |
| 21 | + "onCommand:syntaxTree.start", |
| 22 | + "onCommand:syntaxTree.stop", |
| 23 | + "onCommand:syntaxTree.restart", |
| 24 | + "onCommand:syntaxTree.showOutputChannel", |
| 25 | + "onCommand:syntaxTree.visualize", |
| 26 | + "onCommand:syntaxTree.disasm" |
| 27 | + ], |
| 28 | + "main": "./out/extension", |
| 29 | + "contributes": { |
| 30 | + "commands": [ |
| 31 | + { |
| 32 | + "command": "syntaxTree.start", |
| 33 | + "title": "Syntax Tree: Start" |
| 34 | + }, |
| 35 | + { |
| 36 | + "command": "syntaxTree.stop", |
| 37 | + "title": "Syntax Tree: Stop" |
| 38 | + }, |
| 39 | + { |
| 40 | + "command": "syntaxTree.restart", |
| 41 | + "title": "Syntax Tree: Restart" |
| 42 | + }, |
| 43 | + { |
| 44 | + "command": "syntaxTree.showOutputChannel", |
| 45 | + "title": "Syntax Tree: Show Output Channel" |
| 46 | + }, |
| 47 | + { |
| 48 | + "command": "syntaxTree.visualize", |
| 49 | + "title": "Syntax Tree: Visualize" |
| 50 | + }, |
| 51 | + { |
| 52 | + "command": "syntaxTree.disasm", |
| 53 | + "title": "Syntax Tree: Disassemble" |
| 54 | + } |
| 55 | + ], |
| 56 | + "colors": [ |
| 57 | + { |
| 58 | + "id": "syntaxTree.implicits", |
| 59 | + "description": "Text color for the inserted implicits", |
| 60 | + "defaults": { |
| 61 | + "dark": "#707070", |
| 62 | + "light": "#999999", |
| 63 | + "highContrast": "foreground" |
| 64 | + } |
| 65 | + } |
| 66 | + ] |
| 67 | + }, |
| 68 | + "scripts": { |
| 69 | + "compile": "tsc -p ./", |
| 70 | + "package": "vsce package --yarn --githubBranch main", |
| 71 | + "publish": "vsce publish --yarn --githubBranch main", |
| 72 | + "vscode:prepublish": "yarn compile", |
| 73 | + "watch": "tsc --watch -p ./" |
| 74 | + }, |
| 75 | + "dependencies": { |
| 76 | + "vscode-languageclient": "^7.0.0" |
| 77 | + }, |
| 78 | + "devDependencies": { |
| 79 | + "@types/node": "^17.0.8", |
| 80 | + "@types/vscode": "^1.46.0", |
| 81 | + "typescript": "^4.2.2" |
| 82 | + } |
| 83 | +} |
0 commit comments