caplets 0.0.1

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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +20 -0
  3. package/dist/index.js +23989 -0
  4. package/package.json +78 -0
package/package.json ADDED
@@ -0,0 +1,78 @@
1
+ {
2
+ "name": "caplets",
3
+ "version": "0.0.1",
4
+ "description": "Progressive disclosure gateway for MCP servers.",
5
+ "keywords": [
6
+ "caplets",
7
+ "gateway",
8
+ "mcp",
9
+ "model-context-protocol",
10
+ "tools"
11
+ ],
12
+ "homepage": "https://github.com/spiritledsoftware/caplets#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/spiritledsoftware/caplets/issues"
15
+ },
16
+ "license": "MIT",
17
+ "author": "Ian Pascoe <ian.g.pascoe@gmail.com>",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/spiritledsoftware/caplets.git"
21
+ },
22
+ "bin": {
23
+ "caplets": "dist/index.js"
24
+ },
25
+ "files": [
26
+ "dist",
27
+ "README.md",
28
+ "LICENSE"
29
+ ],
30
+ "type": "module",
31
+ "main": "dist/index.js",
32
+ "exports": {
33
+ ".": "./dist/index.js"
34
+ },
35
+ "publishConfig": {
36
+ "access": "public"
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
+ "dependencies": {
56
+ "@modelcontextprotocol/sdk": "^1.29.0",
57
+ "zod": "^4.4.3"
58
+ },
59
+ "devDependencies": {
60
+ "@changesets/cli": "^2.31.0",
61
+ "@types/node": "^25.6.2",
62
+ "husky": "^9.1.7",
63
+ "lint-staged": "^17.0.3",
64
+ "oxfmt": "^0.48.0",
65
+ "oxlint": "^1.63.0",
66
+ "rolldown": "^1.0.0",
67
+ "typescript": "^6.0.3",
68
+ "vitest": "^4.1.5"
69
+ },
70
+ "lint-staged": {
71
+ "*.{js,cjs,mjs,ts,json,md,yml,yaml}": "oxfmt --check",
72
+ "*.{js,cjs,mjs,ts}": "oxlint"
73
+ },
74
+ "engines": {
75
+ "node": ">=22"
76
+ },
77
+ "packageManager": "pnpm@11.0.9"
78
+ }