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
99 lines (99 loc) · 4.22 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 4.22 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
{
"name": "adcontextprotocol",
"version": "2.5.0",
"private": true,
"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:mcp": "DOTENV_CONFIG_PATH=.env.local MODE=mcp tsx watch server/src/index.ts",
"start:mintlify": "bash scripts/start-mintlify.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": "bash -c 'source <(grep CONDUCTOR_PORT .env.local | sed \"s/^/export /\") && DOTENV_CONFIG_PATH=.env.local concurrently --names \"HTTP,DOCS,STRIPE\" -c \"bgBlue.bold,bgGreen.bold,bgMagenta.bold\" \"npm run start\" \"npm run start:mintlify\" \"npm run start:stripe\"'",
"db:migrate": "DOTENV_CONFIG_PATH=.env.local tsx --import dotenv/config server/src/db/migrate.ts",
"db:seed": "DOTENV_CONFIG_PATH=.env.local tsx server/src/db/seed-registry.ts",
"build": "tsc --project server/tsconfig.json && npm run build:schemas",
"build:schemas": "node scripts/build-schemas.js",
"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.js",
"test:examples": "node tests/example-validation-simple.test.js",
"test:extensions": "node tests/extension-fields.test.js",
"test:snippets": "node tests/snippet-validation.test.js",
"test:json-schema": "node tests/json-schema-validation.test.js",
"test:error-handling": "node tests/check-error-handling.js",
"test:unit": "jest --coverage",
"test:registry": "vitest run server/tests",
"generate-openapi": "node scripts/generate-openapi.js",
"test": "npm run test:schemas && npm run test:examples && npm run test:extensions && npm run test:error-handling && npm run test:json-schema && npm run test:unit && 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",
"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.js"
},
"dependencies": {
"@adcp/client": "^3.3.3",
"@modelcontextprotocol/sdk": "^1.24.3",
"@types/jsonwebtoken": "^9.0.10",
"@workos-inc/node": "^7.77.0",
"@workos-inc/widgets": "^1.6.1",
"axios": "^1.13.2",
"cookie-parser": "^1.4.7",
"dotenv": "^17.2.3",
"express": "^4.22.1",
"express-rate-limit": "^8.2.1",
"free-email-domains": "^1.2.21",
"jsonwebtoken": "^9.0.3",
"marked": "^17.0.1",
"pg": "^8.16.3",
"pino": "^9.14.0",
"pino-pretty": "^13.1.3",
"stripe": "^20.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@jest/globals": "^30.2.0",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^4.17.25",
"@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.240",
"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": ">=18.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",
"zod": "^4.1.13"
}
}