-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.18 KB
/
package.json
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "basics-language-server",
"version": "1.1.2",
"description": "Buffer, path, and snippet completions",
"author": "antonk52",
"license": "MIT",
"keywords": [
"completion",
"language server",
"lsp"
],
"module": "./dist/connection.js",
"bin": {
"basics-language-server": "./dist/cli.js"
},
"contributes": {
"configuration": {
"title": "Basics Language Server Settings",
"properties": {
"basics_ls.buffer.enable": {
"type": "boolean",
"default": true,
"description": "Enable word-like completion"
},
"basics_ls.buffer.minCompletionLength": {
"type": "number",
"default": 4,
"description": "The minimum completion item length"
},
"basics_ls.path.enable": {
"type": "boolean",
"default": true,
"description": "Enable path completion"
},
"basics_ls.snippet.enable": {
"type": "boolean",
"default": false,
"description": "Enable snippet completion"
},
"basics_ls.snippet.sources": {
"type": [
"string",
"array"
],
"default": [],
"description": "Path(s) to directories or json files containing snippets. Supports globs and specific file paths."
}
}
}
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"server": "node dist/cli.js",
"test": "vitest --run",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "/~https://github.com/antonk52/basics-language-server"
},
"bugs": "/~https://github.com/antonk52/basics-language-server/issues",
"funding": "/~https://github.com/sponsors/antonk52",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^22.7.4",
"typescript": "^5.0.0",
"vitest": "^2.1.3"
},
"dependencies": {
"fast-glob": "^3.3.2",
"isbinaryfile": "^5.0.2",
"jsonc-parser": "^3.3.1",
"superstruct": "^2.0.2",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-protocol": "^3.17.5",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-uri": "^3.0.8"
}
}