-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.98 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
{
"name": "mcp2",
"version": "1.0.0",
"type": "module",
"description": "ChatGPT App with OAuth2 bridge using Privy.io and MCP",
"scripts": {
"dev": "bun --watch src/server/index.ts",
"dev:widgets": "vite build --config src/widgets/vite.config.ts --watch",
"dev:all": "concurrently \"bun run dev:widgets\" \"sleep 2 && bun run dev\"",
"build": "bun run build:client && bun run build:widgets && bun run build:server",
"build:client": "vite build --config src/client/vite.config.ts",
"build:widgets": "vite build --config src/widgets/vite.config.ts",
"build:server": "tsc -p tsconfig.server.json",
"start": "NODE_ENV=production bun dist/server/index.js",
"preview": "bun run build && bun run start",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:e2e": "vitest run tests/e2e",
"test:watch": "vitest",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.2",
"@openai/apps-sdk-ui": "^0.2.1",
"@privy-io/react-auth": "^1.92.4",
"@privy-io/server-auth": "^1.32.5",
"cors": "^2.8.5",
"express": "^4.21.2",
"jose": "^6.1.1",
"jsonwebtoken": "^9.0.2",
"pg": "^8.16.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.28.0",
"uuid": "^11.0.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.17",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.10.1",
"@types/pg": "^8.15.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.22",
"bun-types": "^1.3.2",
"concurrently": "^9.1.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.17",
"typescript": "^5.7.2",
"vite": "^6.0.1",
"vite-express": "^0.19.0",
"vitest": "^4.0.10"
}
}