caplets 0.0.1 → 0.1.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/dist/index.js +1 -1
- package/package.json +17 -20
package/dist/index.js
CHANGED
|
@@ -19847,7 +19847,7 @@ const EMPTY_COMPLETION_RESULT = { completion: {
|
|
|
19847
19847
|
} };
|
|
19848
19848
|
//#endregion
|
|
19849
19849
|
//#region package.json
|
|
19850
|
-
var version = "0.0
|
|
19850
|
+
var version = "0.1.0";
|
|
19851
19851
|
//#endregion
|
|
19852
19852
|
//#region node_modules/.pnpm/@modelcontextprotocol+sdk@1.29.0_zod@4.4.3/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.js
|
|
19853
19853
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "caplets",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Progressive disclosure gateway for MCP servers.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"caplets",
|
|
@@ -35,23 +35,6 @@
|
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"scripts": {
|
|
39
|
-
"build": "rolldown -c",
|
|
40
|
-
"build:watch": "rolldown -c --watch",
|
|
41
|
-
"changeset": "changeset",
|
|
42
|
-
"dev": "node ./scripts/dev.mjs",
|
|
43
|
-
"format": "oxfmt .",
|
|
44
|
-
"format:check": "oxfmt --check .",
|
|
45
|
-
"lint": "oxlint .",
|
|
46
|
-
"lint:fix": "oxlint --fix .",
|
|
47
|
-
"prepack": "pnpm build",
|
|
48
|
-
"prepare": "husky",
|
|
49
|
-
"release": "pnpm build && changeset publish",
|
|
50
|
-
"typecheck": "tsc --noEmit",
|
|
51
|
-
"test": "vitest run",
|
|
52
|
-
"verify": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test && pnpm build",
|
|
53
|
-
"version-packages": "changeset version"
|
|
54
|
-
},
|
|
55
38
|
"dependencies": {
|
|
56
39
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
57
40
|
"zod": "^4.4.3"
|
|
@@ -74,5 +57,19 @@
|
|
|
74
57
|
"engines": {
|
|
75
58
|
"node": ">=22"
|
|
76
59
|
},
|
|
77
|
-
"
|
|
78
|
-
|
|
60
|
+
"scripts": {
|
|
61
|
+
"build": "rolldown -c",
|
|
62
|
+
"build:watch": "rolldown -c --watch",
|
|
63
|
+
"changeset": "changeset",
|
|
64
|
+
"dev": "node ./scripts/dev.mjs",
|
|
65
|
+
"format": "oxfmt .",
|
|
66
|
+
"format:check": "oxfmt --check .",
|
|
67
|
+
"lint": "oxlint .",
|
|
68
|
+
"lint:fix": "oxlint --fix .",
|
|
69
|
+
"release": "pnpm build && changeset publish",
|
|
70
|
+
"typecheck": "tsc --noEmit",
|
|
71
|
+
"test": "vitest run",
|
|
72
|
+
"verify": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test && pnpm build",
|
|
73
|
+
"version-packages": "changeset version"
|
|
74
|
+
}
|
|
75
|
+
}
|