|
| 1 | +{ |
| 2 | + "name": "codebook-vscode", |
| 3 | + "displayName": "Codebook Spell Checker", |
| 4 | + "description": "A fast, code-aware spell checker.", |
| 5 | + "version": "0.0.1", |
| 6 | + "publisher": "blopker", |
| 7 | + "license": "MIT", |
| 8 | + "repository": { |
| 9 | + "type": "git", |
| 10 | + "url": "https://github.com/blopker/codebook" |
| 11 | + }, |
| 12 | + "bugs": { |
| 13 | + "url": "https://github.com/blopker/codebook/issues" |
| 14 | + }, |
| 15 | + "homepage": "https://github.com/blopker/codebook", |
| 16 | + "engines": { |
| 17 | + "vscode": "^1.80.0" |
| 18 | + }, |
| 19 | + "categories": [ |
| 20 | + "Linters", |
| 21 | + "Other" |
| 22 | + ], |
| 23 | + "extensionKind": [ |
| 24 | + "workspace" |
| 25 | + ], |
| 26 | + "activationEvents": [ |
| 27 | + "onLanguage:c", |
| 28 | + "onLanguage:cpp", |
| 29 | + "onLanguage:css", |
| 30 | + "onLanguage:elixir", |
| 31 | + "onLanguage:go", |
| 32 | + "onLanguage:html", |
| 33 | + "onLanguage:haskell", |
| 34 | + "onLanguage:java", |
| 35 | + "onLanguage:javascript", |
| 36 | + "onLanguage:latex", |
| 37 | + "onLanguage:lua", |
| 38 | + "onLanguage:markdown", |
| 39 | + "onLanguage:php", |
| 40 | + "onLanguage:plaintext", |
| 41 | + "onLanguage:python", |
| 42 | + "onLanguage:ruby", |
| 43 | + "onLanguage:rust", |
| 44 | + "onLanguage:toml", |
| 45 | + "onLanguage:typescript", |
| 46 | + "onLanguage:typst", |
| 47 | + "onLanguage:zig", |
| 48 | + "onLanguage:csharp" |
| 49 | + ], |
| 50 | + "main": "./dist/extension.js", |
| 51 | + "scripts": { |
| 52 | + "build": "tsc -p .", |
| 53 | + "watch": "tsc -w -p .", |
| 54 | + "package": "bun run build && vsce package --no-dependencies", |
| 55 | + "publish": "bun run build && vsce publish --no-dependencies" |
| 56 | + }, |
| 57 | + "contributes": { |
| 58 | + "commands": [ |
| 59 | + { |
| 60 | + "command": "codebook.restart", |
| 61 | + "title": "Codebook: Restart Language Server" |
| 62 | + } |
| 63 | + ], |
| 64 | + "configuration": { |
| 65 | + "title": "Codebook", |
| 66 | + "properties": { |
| 67 | + "codebook.binaryPath": { |
| 68 | + "type": "string", |
| 69 | + "default": "", |
| 70 | + "description": "Absolute path to an existing codebook-lsp binary. Leave empty to allow the extension to manage the download." |
| 71 | + }, |
| 72 | + "codebook.enablePrerelease": { |
| 73 | + "type": "boolean", |
| 74 | + "default": false, |
| 75 | + "description": "Allow downloading pre-release builds when managing the language server binary." |
| 76 | + }, |
| 77 | + "codebook.logLevel": { |
| 78 | + "type": "string", |
| 79 | + "enum": [ |
| 80 | + "error", |
| 81 | + "warn", |
| 82 | + "info", |
| 83 | + "debug" |
| 84 | + ], |
| 85 | + "default": "info", |
| 86 | + "description": "Value assigned to the RUST_LOG environment variable for the language server." |
| 87 | + } |
| 88 | + } |
| 89 | + } |
| 90 | + }, |
| 91 | + "dependencies": { |
| 92 | + "@types/adm-zip": "^0.5.7", |
| 93 | + "@types/tar": "^6.1.13", |
| 94 | + "@types/which": "^3.0.4", |
| 95 | + "adm-zip": "^0.5.12", |
| 96 | + "tar": "^6.2.1", |
| 97 | + "vscode-languageclient": "^9.0.1", |
| 98 | + "which": "^4.0.0" |
| 99 | + }, |
| 100 | + "devDependencies": { |
| 101 | + "@types/node": "^20.12.7", |
| 102 | + "@types/vscode": "^1.80.0", |
| 103 | + "@vscode/vsce": "^3.7.0", |
| 104 | + "typescript": "^5.4.0" |
| 105 | + } |
| 106 | +} |
0 commit comments