-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.21 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "@vlabo/cspell-lsp",
"version": "1.1.4",
"description": "This extension performs spell checking in source code files, using the [cspell library](https://cspell.org/).",
"main": "index.js",
"type": "module",
"bin": {
"cspell-lsp": "dist/cspell-lsp.js"
},
"files": [],
"author": "vlabo",
"license": "GPL-3.0-only",
"homepage": "https://github.com/vlabo/cspell-lsp",
"dependencies": {
"@types/command-line-args": "^5.2.3",
"@vlabo/cspell-lsp": "^1.0.0",
"command-line-args": "^6.0.1",
"cspell-lib": "^8.17.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-languageserver-types": "^3.17.5"
},
"devDependencies": {
"@types/node": "^22.10.5"
},
"scripts": {
"build": "bun build ./src/main.ts --outfile=dist/cspell-lsp.js --target=node",
"start": "node dist/cspell-lsp.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vlabo/cspell-lsp.git"
},
"keywords": [
"spellcheck",
"spell",
"check"
],
"bugs": {
"url": "https://github.com/vlabo/cspell-lsp/issues"
}
}