-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.48 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
{
"name": "thinking-map",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"postinstall": "node scripts/postinstall.mjs",
"setup": "npm install && npm run db:ensure && npm run db:push && npm run db:seed",
"dev": "npm run db:ensure && next dev --webpack -H 127.0.0.1",
"build": "npx prisma generate && next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"db:ensure": "npx tsx scripts/ensureDevDatabase.ts",
"db:push": "npx prisma generate && npx prisma db push",
"db:seed": "npx tsx prisma/seed.ts",
"db:reset": "npx prisma generate && npx prisma db push --force-reset && npx tsx prisma/seed.ts",
"mcp": "NODE_OPTIONS=--conditions=react-server npx tsx mcp/stdio.ts",
"evals:schema": "npx tsx scripts/emit-tool-schema.ts",
"evals:schema:check": "npx tsx scripts/emit-tool-schema.ts evals/.tools.schema.check.json && diff -u evals/tools.schema.json evals/.tools.schema.check.json && rm -f evals/.tools.schema.check.json",
"evals": "DOTENV_CONFIG_PATH=.env.local DOTENV_CONFIG_QUIET=true NODE_OPTIONS=--require=dotenv/config npx webmcp-evals local -t evals/tools.schema.json -e evals/suites/tool-selection.json --backend vercel",
"evals:browser": "DOTENV_CONFIG_PATH=.env.local DOTENV_CONFIG_QUIET=true NODE_OPTIONS=--require=dotenv/config npx tsx scripts/run-browser-evals.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"@mozilla/readability": "^0.6.0",
"@prisma/adapter-pg": "^7.4.1",
"@prisma/client": "^7.4.1",
"dotenv": "^17.2.0",
"linkedom": "^0.18.13",
"mammoth": "^1.12.2",
"next": "^16.1.7",
"pg": "^8.23.0",
"prisma": "^7.4.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"server-only": "^0.0.1",
"unpdf": "^1.8.1",
"zod": "^4.5.4"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.3",
"@types/node": "^20",
"@types/pg": "^8.23.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"ai": "^7.0.91",
"embedded-postgres": "17.10.0-beta.17",
"eslint": "^9",
"eslint-config-next": "^16.3.4",
"jsdom": "^29.1.1",
"playwright": "^1.58.2",
"tailwindcss": "^4",
"tsx": "^4.19.4",
"typescript": "^5",
"vitest": "^3",
"webmcp-evals": "^0.0.4"
},
"allowScripts": {
"esbuild": true,
"prisma": true,
"unrs-resolver": true,
"@prisma/engines": true
}
}