-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
162 lines (162 loc) · 5.13 KB
/
Copy pathpackage.json
File metadata and controls
162 lines (162 loc) · 5.13 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "@zackbart/connecta",
"version": "0.22.3",
"type": "module",
"sideEffects": false,
"description": "One MCP to rule them all — a single MCP endpoint aggregating many downstream connectors behind a code-first surface of seven meta-tools.",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"access": "public"
},
"bin": {
"connecta": "./bin/connecta.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zackbart/connecta.git"
},
"homepage": "https://github.com/zackbart/connecta#readme",
"bugs": {
"url": "https://github.com/zackbart/connecta/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"cloudflare-workers",
"connectors"
],
"files": [
"bin",
"dist",
"documentation",
"examples/worker",
"templates",
"AGENTS.md",
"ethos.md",
"README.md",
"CHANGELOG.md",
"SECURITY.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json",
"./node": {
"types": "./dist/node.d.ts",
"import": "./dist/node.js"
},
"./json-schema": {
"types": "./dist/json-schema.d.ts",
"import": "./dist/json-schema.js"
},
"./quickjs": {
"types": "./dist/executors/quickjs.d.ts",
"import": "./dist/executors/quickjs.js"
},
"./auth/clerk": {
"types": "./dist/auth/clerk.d.ts",
"import": "./dist/auth/clerk.js"
},
"./auth/cloudflare-access": {
"types": "./dist/auth/cloudflare-access.d.ts",
"import": "./dist/auth/cloudflare-access.js"
},
"./providers/cloudflare": {
"types": "./dist/providers/cloudflare.d.ts",
"import": "./dist/providers/cloudflare.js"
},
"./providers/linear": {
"types": "./dist/providers/linear.d.ts",
"import": "./dist/providers/linear.js"
},
"./providers/mixpanel": {
"types": "./dist/providers/mixpanel.d.ts",
"import": "./dist/providers/mixpanel.js"
},
"./providers/notion": {
"types": "./dist/providers/notion.d.ts",
"import": "./dist/providers/notion.js"
},
"./providers/revenuecat": {
"types": "./dist/providers/revenuecat.d.ts",
"import": "./dist/providers/revenuecat.js"
},
"./providers/stripe": {
"types": "./dist/providers/stripe.d.ts",
"import": "./dist/providers/stripe.js"
},
"./providers/vercel": {
"types": "./dist/providers/vercel.d.ts",
"import": "./dist/providers/vercel.js"
}
},
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build:operator-ui": "node scripts/build-operator-ui.mjs",
"check:operator-ui": "node scripts/build-operator-ui.mjs --check",
"build": "npm run build:operator-ui && npm run clean && tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.operator-ui.json --noEmit",
"test": "vitest run",
"test:browser:install": "playwright install chromium",
"test:browser": "playwright test",
"test:node": "vitest run --project node",
"test:workers": "vitest run --project workers",
"check:docs": "node scripts/check-doc-links.mjs",
"check:lint": "oxlint -D correctness --report-unused-disable-directives .",
"check:unused": "knip --include dependencies,unlisted,exports,nsExports,types,nsTypes",
"check:examples": "tsc -p tsconfig.template.node.json && tsc -p tsconfig.examples.worker.json",
"check:security": "npm audit --omit=dev --audit-level=moderate",
"check:package": "node scripts/check-package.mjs",
"load:admission": "npm run build && node eval/admission-load.mjs",
"providers:check": "tsx scripts/drift-check.mjs --specs --docs",
"drift:check": "tsx scripts/drift-check.mjs",
"check": "npm run check:docs && npm run check:operator-ui && npm run check:lint && npm run check:unused && npm run typecheck && npm run test && npm run build && npm run check:examples",
"release:check": "npm run check && npm run check:security && npm run check:package",
"prepack": "npm run check"
},
"dependencies": {
"@cfworker/json-schema": "^4.1.1",
"@modelcontextprotocol/client": "2.0.0",
"@modelcontextprotocol/server": "2.0.0",
"zod": "^4.4.3"
},
"peerDependencies": {
"@clerk/backend": "^3.12.0",
"@cloudflare/codemode": "^0.4.4 || ^0.5.0",
"quickjs-emscripten": "^0.32.0"
},
"peerDependenciesMeta": {
"@clerk/backend": {
"optional": true
},
"@cloudflare/codemode": {
"optional": true
},
"quickjs-emscripten": {
"optional": true
}
},
"devDependencies": {
"@clerk/backend": "^3.12.0",
"@cloudflare/codemode": "^0.5.0",
"@cloudflare/vitest-pool-workers": "^0.18.8",
"@cloudflare/workers-types": "^4.20250101.0 || ^5.0.0",
"@playwright/test": "^1.62.0",
"@types/node": "^22.0.0",
"esbuild": "^0.28.0",
"knip": "^6.29.0",
"oxlint": "^1.76.0",
"preact": "^10.29.8",
"quickjs-emscripten": "^0.32.0",
"tsx": "^4.23.1",
"typescript": "^5.6.0",
"vitest": "^4.1.6",
"wrangler": "^4.114.0"
}
}