forked from Peiiii/AgentVerse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.06 KB
/
package.json
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
{
"name": "ai-agent-discussion",
"private": true,
"version": "0.1.0",
"description": "An open-source platform supporting autonomous conversations between multiple AI agents",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"deploy": "pnpm build && ossutil64 cp -r -u dist oss://apps-eiooie-com/muti-chat -c ./.ossutilconfig.local",
"deploy2": "pnpm build && ossutil64 cp -r -u dist oss://agentverse -c ./.ossutilconfig2.local",
"git:update": "git add . && git commit -m 'update' && git push",
"updateAll": "pnpm git:update && pnpm run deploy",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.4",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.5",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-slider": "^1.2.2",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-toast": "^1.2.4",
"ahooks": "^3.8.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.0.6",
"lucide-react": "^0.468.0",
"nanoid": "^5.0.9",
"openai": "^4.80.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.3",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"rehype-prism-plus": "^2.0.0",
"rehype-raw": "^7.0.0",
"remark-emoji": "^5.0.1",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"rx-nested-bean": "workspace:*",
"rxjs": "^7.8.1",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"unified": "^11.0.5"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.17.0",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/hast": "^3.0.4",
"@types/jest": "^29.5.14",
"@types/mdast": "^4.0.4",
"@types/minimist": "^1.2.5",
"@types/node": "^22.10.2",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"@types/unist": "^3.0.3",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.13.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"minimist": "^1.2.8",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.1",
"unist-util-visit": "^5.0.0",
"vite": "^6.0.3",
"vite-plugin-babel": "^1.3.0",
"vite-tsconfig-paths": "^5.1.4"
}
}