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
136 lines (136 loc) · 6.13 KB
/
package.json
File metadata and controls
136 lines (136 loc) · 6.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
{
"name": "adcontextprotocol",
"version": "3.0.0-rc.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:hmac-vectors": "node --test tests/webhook-hmac-vectors.test.cjs",
"test:transport-errors": "node --test tests/transport-error-mapping.test.cjs",
"test:unit": "vitest run --dir tests/",
"test:server-unit": "vitest run server/tests/unit/",
"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 --exclude 'server/tests/simulation/**'",
"test:simulation": "vitest run server/tests/simulation/scenarios --pool forks --poolOptions.forks.singleFork --testTimeout 120000",
"test:docker": "docker compose -f docker-compose.test.yml up --build --abort-on-container-exit",
"test:docs-nav": "node tests/docs-nav-validation.test.cjs",
"test": "npm run test:docs-nav && 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:hmac-vectors && npm run test:transport-errors && npm run test:unit && npm run test:server-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 run test:unit && npm run typecheck",
"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",
"check:seo": "node scripts/check-seo-metadata.cjs",
"check:owned-links": "node scripts/check-owned-links.js",
"check:images": "bash scripts/check-image-quality.sh"
},
"dependencies": {
"@adcp/client": "^4.23.0",
"@anthropic-ai/sdk": "^0.82.0",
"@asteasolutions/zod-to-openapi": "^8.5.0",
"@google/generative-ai": "^0.24.1",
"@modelcontextprotocol/sdk": "^1.28.0",
"@mozilla/readability": "^0.6.0",
"@opentelemetry/api-logs": "^0.214.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.214.0",
"@opentelemetry/resources": "^2.6.1",
"@opentelemetry/sdk-logs": "^0.214.0",
"@opentelemetry/semantic-conventions": "^1.40.0",
"@slack/bolt": "^4.6.0",
"@slack/web-api": "^7.15.0",
"@types/jsonwebtoken": "^9.0.10",
"@workos-inc/node": "^8.11.1",
"@workos-inc/widgets": "^1.10.1",
"axios": "^1.13.6",
"cookie-parser": "^1.4.7",
"csv-parse": "^6.2.1",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-rate-limit": "^8.3.1",
"file-type": "^22.0.0",
"free-email-domains": "^1.2.25",
"googleapis": "^171.4.0",
"isomorphic-dompurify": "^3.7.1",
"jose": "^6.2.2",
"jsonwebtoken": "^9.0.3",
"linkedom": "^0.18.12",
"mammoth": "^1.12.0",
"marked": "^17.0.6",
"multer": "^2.1.1",
"pdf-parse": "^2.4.5",
"pg": "^8.20.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"posthog-node": "^5.28.8",
"resend": "^6.9.4",
"rss-parser": "^3.13.0",
"sharp": "^0.34.5",
"stripe": "^22.0.0",
"svix": "^1.89.0",
"whoiser": "^2.0.0-beta.10",
"yaml": "^2.8.3",
"yauzl": "^3.2.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@types/cookie-parser": "^1.4.10",
"@types/dompurify": "^3.2.0",
"@types/escape-html": "^1.0.4",
"@types/express": "^5.0.6",
"@types/multer": "^2.1.0",
"@types/node": "^22.15.0",
"@types/pg": "^8.20.0",
"@types/supertest": "^7.2.0",
"@types/yauzl": "^2.10.3",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"c8": "^11.0.0",
"concurrently": "^9.2.1",
"glob": "^13.0.6",
"husky": "^9.1.7",
"jsdom": "^29.0.1",
"mintlify": "^4.2.459",
"msw": "^2.12.14",
"puppeteer": "^24.40.0",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"vitest": "^4.1.2"
},
"engines": {
"node": ">=22.0"
},
"overrides": {
"webpack-dev-server": "^5.2.2",
"cookie": "^0.7.2",
"tar": "^6.2.1",
"js-yaml": "^4.1.1",
"axios": "^1.13.6",
"@types/express-serve-static-core": "5.1.0",
"zod": "$zod"
}
}