lexic-mcp 0.2.20 → 0.2.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.cjs +28 -24
- package/package.json +56 -56
package/package.json
CHANGED
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "lexic-mcp",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "MCP server connecting Claude Code to Lexic knowledge management",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"bin": {
|
|
8
|
-
"lexic-mcp": "dist/bundle.cjs"
|
|
9
|
-
},
|
|
10
|
-
"scripts": {
|
|
11
|
-
"build": "tsc",
|
|
12
|
-
"bundle": "npm run build && node scripts/bundle.cjs",
|
|
13
|
-
"dev": "tsc --watch",
|
|
14
|
-
"start": "node dist/index.js",
|
|
15
|
-
"test": "vitest",
|
|
16
|
-
"test:unit": "vitest run tests/unit",
|
|
17
|
-
"test:integration": "vitest run tests/integration",
|
|
18
|
-
"lint": "eslint src --ext .ts",
|
|
19
|
-
"lint:fix": "eslint src --ext .ts --fix",
|
|
20
|
-
"format": "prettier --write \"src/**/*.ts\"",
|
|
21
|
-
"clean": "rimraf dist",
|
|
22
|
-
"prepublishOnly": "npm run bundle"
|
|
23
|
-
},
|
|
24
|
-
"keywords": [
|
|
25
|
-
"mcp",
|
|
26
|
-
"lexic",
|
|
27
|
-
"claude",
|
|
28
|
-
"knowledge-management",
|
|
29
|
-
"ai-development"
|
|
30
|
-
],
|
|
31
|
-
"author": "Parul Bhargava <parulb@lexic.io>",
|
|
32
|
-
"license": "MIT",
|
|
33
|
-
"dependencies": {
|
|
34
|
-
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
35
|
-
"express": "^5.2.1"
|
|
36
|
-
},
|
|
37
|
-
"devDependencies": {
|
|
38
|
-
"@types/express": "^5.0.6",
|
|
39
|
-
"@types/node": "^20.10.0",
|
|
40
|
-
"@typescript-eslint/eslint-plugin": "^6.13.0",
|
|
41
|
-
"@typescript-eslint/parser": "^6.13.0",
|
|
42
|
-
"esbuild": "^0.20.0",
|
|
43
|
-
"eslint": "^8.55.0",
|
|
44
|
-
"prettier": "^3.1.0",
|
|
45
|
-
"rimraf": "^5.0.0",
|
|
46
|
-
"typescript": "^5.3.0",
|
|
47
|
-
"vitest": "^4.0.17"
|
|
48
|
-
},
|
|
49
|
-
"engines": {
|
|
50
|
-
"node": ">=18.0.0"
|
|
51
|
-
},
|
|
52
|
-
"files": [
|
|
53
|
-
"dist/bundle.cjs",
|
|
54
|
-
"README.md"
|
|
55
|
-
]
|
|
56
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "lexic-mcp",
|
|
3
|
+
"version": "0.2.21",
|
|
4
|
+
"description": "MCP server connecting Claude Code to Lexic knowledge management",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"lexic-mcp": "dist/bundle.cjs"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "tsc",
|
|
12
|
+
"bundle": "npm run build && node scripts/bundle.cjs",
|
|
13
|
+
"dev": "tsc --watch",
|
|
14
|
+
"start": "node dist/index.js",
|
|
15
|
+
"test": "vitest",
|
|
16
|
+
"test:unit": "vitest run tests/unit",
|
|
17
|
+
"test:integration": "vitest run tests/integration",
|
|
18
|
+
"lint": "eslint src --ext .ts",
|
|
19
|
+
"lint:fix": "eslint src --ext .ts --fix",
|
|
20
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
21
|
+
"clean": "rimraf dist",
|
|
22
|
+
"prepublishOnly": "npm run bundle"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"mcp",
|
|
26
|
+
"lexic",
|
|
27
|
+
"claude",
|
|
28
|
+
"knowledge-management",
|
|
29
|
+
"ai-development"
|
|
30
|
+
],
|
|
31
|
+
"author": "Parul Bhargava <parulb@lexic.io>",
|
|
32
|
+
"license": "MIT",
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
35
|
+
"express": "^5.2.1"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@types/express": "^5.0.6",
|
|
39
|
+
"@types/node": "^20.10.0",
|
|
40
|
+
"@typescript-eslint/eslint-plugin": "^6.13.0",
|
|
41
|
+
"@typescript-eslint/parser": "^6.13.0",
|
|
42
|
+
"esbuild": "^0.20.0",
|
|
43
|
+
"eslint": "^8.55.0",
|
|
44
|
+
"prettier": "^3.1.0",
|
|
45
|
+
"rimraf": "^5.0.0",
|
|
46
|
+
"typescript": "^5.3.0",
|
|
47
|
+
"vitest": "^4.0.17"
|
|
48
|
+
},
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=18.0.0"
|
|
51
|
+
},
|
|
52
|
+
"files": [
|
|
53
|
+
"dist/bundle.cjs",
|
|
54
|
+
"README.md"
|
|
55
|
+
]
|
|
56
|
+
}
|