@lynq/lynq 0.1.0 → 0.2.0
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/package.json +8 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lynq/lynq",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Lightweight MCP server framework. Tool visibility control through middleware.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -40,6 +40,10 @@
|
|
|
40
40
|
"lint": "biome check src tests",
|
|
41
41
|
"lint:fix": "biome check --write src tests",
|
|
42
42
|
"typecheck": "tsc --noEmit",
|
|
43
|
+
"docs:api": "typedoc",
|
|
44
|
+
"docs:dev": "vitepress dev docs",
|
|
45
|
+
"docs:build": "vitepress build docs",
|
|
46
|
+
"docs:preview": "vitepress preview docs",
|
|
43
47
|
"prepublishOnly": "pnpm build"
|
|
44
48
|
},
|
|
45
49
|
"devDependencies": {
|
|
@@ -49,7 +53,10 @@
|
|
|
49
53
|
"express": "^5.2.1",
|
|
50
54
|
"hono": "^4.12.5",
|
|
51
55
|
"tsup": "^8.0.0",
|
|
56
|
+
"typedoc": "^0.28.17",
|
|
57
|
+
"typedoc-plugin-markdown": "^4.10.0",
|
|
52
58
|
"typescript": "^5.6.0",
|
|
59
|
+
"vitepress": "^1.6.4",
|
|
53
60
|
"vitest": "^2.0.0",
|
|
54
61
|
"zod": "^3.24.0"
|
|
55
62
|
},
|