-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.78 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.78 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@opticlm/connector",
"version": "2.3.1",
"description": "Provides an abstract interface that allows LLMs to connect to fact sources such as LSPs, code diagnostics, symbol definitions/references, links, and frontmatter",
"type": "module",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./lsp": {
"types": "./dist/lsp/index.d.ts",
"default": "./dist/lsp/index.js"
},
"./mcp": {
"types": "./dist/mcp/index.d.ts",
"default": "./dist/mcp/index.js"
},
"./pipe": {
"types": "./dist/pipe/index.d.ts",
"default": "./dist/pipe/index.js"
},
"./schemas": {
"types": "./dist/schemas.d.ts",
"default": "./dist/schemas.js"
}
},
"files": ["dist/**/*.js", "dist/**/*.d.ts", "LICENSE"],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"prepublishOnly": "npm run build"
},
"keywords": ["mcp", "lsp", "language-server", "ide", "vscode", "jetbrains"],
"author": "EFLKumo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/OpticLM/connector"
},
"peerDependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"vscode-languageserver-protocol": "^3.17.5",
"zod": "^4.3.6"
},
"peerDependenciesMeta": {
"vscode-languageserver-protocol": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@types/node": "^25",
"tsup": "^8.5.1",
"typescript": "^5.9",
"nanoid": "^5.1.7",
"vitest": "^4"
},
"engines": {
"node": ">=18.0.0"
}
}