-
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) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.92 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": "roundtable",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@10.33.0",
"description": "Multi-AI Consensus Playground — run the Consensus Validation Protocol with multiple models and custom personas",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.52",
"ai": "^6.0.158",
"clsx": "^2.1.1",
"lucide-react": "^0.468.0",
"next": "^15.5.21",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^9.0.3",
"remark-gfm": "^4.0.0",
"sonner": "^1.7.0",
"tailwind-merge": "^2.6.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.3",
"autoprefixer": "^10.4.20",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jsdom": "^29.0.2",
"postcss": "^8.5.23",
"prettier": "^3.8.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.0",
"vitest": "^4.1.3"
},
"pnpm": {
"overrides": {
"nanoid@>=3 <4": "3.3.18",
"js-yaml@>=4": "4.3.1",
"postcss": "8.5.23",
"undici@>=7": "7.29.0",
"sharp": "0.35.4",
"vite@>=8 <8.0.16": "8.0.16",
"brace-expansion@>=1 <2": "1.1.16",
"brace-expansion@>=3 <5.0.7": "5.0.7",
"@babel/core": "7.29.6"
}
}
}