forked from adcontextprotocol/adcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 5.32 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 5.32 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
{
"name": "adcontextprotocol",
"version": "3.0.0-beta.3",
"private": true,
"type": "module",
"scripts": {
"start": "bash -c 'source <(grep CONDUCTOR_PORT .env.local | sed \"s/^/export /\") && DOTENV_CONFIG_PATH=.env.local PORT=${CONDUCTOR_PORT:-3000} tsx watch server/src/index.ts'",
"start:mintlify": "bash scripts/start-mintlify.sh",
"sync:docs": "bash scripts/sync-versioned-docs.sh",
"start:stripe": "bash -c 'source <(grep CONDUCTOR_PORT .env.local | sed \"s/^/export /\") && PORT=${CONDUCTOR_PORT:-3000} && stripe listen --forward-to localhost:$PORT/api/webhooks/stripe'",
"dev": "echo 'Use docker compose up --build for local development' && exit 1",
"db:migrate": "DOTENV_CONFIG_PATH=.env.local tsx --import dotenv/config server/src/db/migrate.ts",
"build": "tsc --project server/tsconfig.json && npm run build:schemas",
"build:openapi": "tsx scripts/generate-openapi.ts",
"build:schemas": "node scripts/build-schemas.cjs",
"build:mintlify": "cd mintlify-docs && mintlify build",
"deploy:mintlify": "mintlify deploy",
"typecheck": "tsc --project server/tsconfig.json --noEmit",
"test:schemas": "node tests/schema-validation.test.cjs",
"test:examples": "node tests/example-validation-simple.test.cjs",
"test:extensions": "node tests/extension-fields.test.cjs",
"test:extension-schemas": "node tests/extension-schemas.test.cjs",
"test:snippets": "node tests/snippet-validation.test.cjs",
"test:json-schema": "node tests/json-schema-validation.test.cjs",
"test:error-handling": "node tests/check-error-handling.cjs",
"test:composed": "node tests/composed-schema-validation.test.cjs",
"test:migrations": "node tests/migration-validation.test.cjs",
"test:unit": "jest --coverage",
"test:openapi": "tsx scripts/generate-openapi.ts && git diff --exit-code static/openapi/registry.yaml || (echo 'OpenAPI spec is out of date. Run: npm run build:openapi' && exit 1)",
"test:registry": "vitest run server/tests",
"test:docker": "docker compose -f docker-compose.test.yml up --build --abort-on-container-exit",
"test": "npm run test:schemas && npm run test:examples && npm run test:extensions && npm run test:extension-schemas && npm run test:error-handling && npm run test:json-schema && npm run test:composed && npm run test:migrations && npm run test:unit && npm run test:openapi && npm run typecheck",
"test:all": "npm run test:schemas && npm run test:examples && npm run test:extensions && npm run test:error-handling && npm run test:snippets && npm run typecheck",
"precommit": "npm test",
"prepare": "husky",
"changeset": "changeset",
"version": "changeset version && npm run build:schemas -- --release",
"update-schema-versions": "echo 'Schema versioning is now handled by build:schemas script'",
"release": "npm run version && npm test && npm run build && git add -A && git commit -m 'Version packages' && git push",
"verify-version-sync": "node scripts/verify-version-sync.cjs"
},
"dependencies": {
"@adcp/client": "^3.20.0",
"@anthropic-ai/sdk": "^0.71.2",
"@asteasolutions/zod-to-openapi": "^8.4.0",
"@modelcontextprotocol/sdk": "^1.24.3",
"@mozilla/readability": "^0.6.0",
"@opentelemetry/api-logs": "^0.208.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.208.0",
"@opentelemetry/resources": "^2.2.0",
"@opentelemetry/sdk-logs": "^0.208.0",
"@opentelemetry/semantic-conventions": "^1.38.0",
"@slack/bolt": "^4.6.0",
"@types/jsonwebtoken": "^9.0.10",
"@workos-inc/node": "^8.5.0",
"@workos-inc/widgets": "^1.6.1",
"axios": "^1.13.2",
"cookie-parser": "^1.4.7",
"csv-parse": "^6.1.0",
"dotenv": "^17.2.3",
"express": "^4.22.1",
"express-rate-limit": "^8.2.1",
"free-email-domains": "^1.2.21",
"googleapis": "^169.0.0",
"jose": "^6.1.3",
"jsonwebtoken": "^9.0.3",
"linkedom": "^0.18.12",
"mammoth": "^1.11.0",
"marked": "^17.0.1",
"pg": "^8.16.3",
"pino": "^9.14.0",
"pino-pretty": "^13.1.3",
"posthog-node": "^5.18.1",
"resend": "^6.6.0",
"rss-parser": "^3.13.0",
"stripe": "^20.0.0",
"svix": "^1.82.0",
"whoiser": "^2.0.0-beta.10",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@jest/globals": "^30.2.0",
"@jest/test-sequencer": "^30.2.0",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.26",
"@types/pg": "^8.16.0",
"@types/supertest": "^6.0.3",
"@vitejs/plugin-react": "^5.1.2",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"c8": "^10.1.3",
"concurrently": "^9.2.1",
"glob": "^11.1.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"mintlify": "^4.2.296",
"msw": "^2.12.4",
"puppeteer": "^24.33.0",
"supertest": "^7.1.4",
"ts-jest": "^29.4.6",
"tsx": "^4.21.0",
"typescript": "~5.6.2",
"vite": "^7.2.7",
"vitest": "^4.0.15"
},
"engines": {
"node": ">=20.0"
},
"overrides": {
"webpack-dev-server": "^5.2.2",
"cookie": "^0.7.2",
"tar": "^6.2.1",
"send": "^0.19.1",
"serve-static": "^1.16.2",
"body-parser": "^1.20.3",
"path-to-regexp": "^0.1.12",
"js-yaml": "^4.1.1",
"axios": "^1.13.2",
"express": "^4.22.1",
"@types/express-serve-static-core": "5.1.0",
"zod": "$zod"
}
}