-
Notifications
You must be signed in to change notification settings - Fork 727
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.96 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
100
101
102
{
"name": "nexent",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"test:e2e:external-memory": "playwright test e2e/external-memory-provider.spec.ts",
"check-all": "npm run type-check && npm run lint && npm run format:check && npm run build"
},
"dependencies": {
"@ant-design/icons": "6.2.5",
"@assistant-ui/react": "^0.15.0",
"@assistant-ui/react-ai-sdk": "^1.3.33",
"@assistant-ui/react-lexical": "0.2.7",
"@assistant-ui/react-markdown": "^0.14.2",
"@dicebear/core": "^9.2.2",
"@dicebear/icons": "^9.2.2",
"@tanstack/react-query": "^5.90.12",
"@types/jszip": "^3.4.0",
"ai": "^6.0.198",
"antd": "^6.3.0",
"antd-style": "^4.1.0",
"assistant-stream": "^0.3.25",
"autoprefixer": "^10.4.20",
"bootstrap-icons": "^1.11.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"cookie": "^1.1.1",
"cross-env": "^10.1.0",
"dayjs": "^1.11.19",
"dicebear": "^9.2.2",
"dotenv": "^16.4.7",
"framer-motion": "^12.23.6",
"github-markdown-css": "^5.8.1",
"http-proxy": "^1.18.1",
"i18next": "^25.2.1",
"js-yaml": "^4.1.1",
"jszip": "^3.10.1",
"katex": "^0.16.11",
"lucide-react": "^0.454.0",
"mermaid": "^11.12.0",
"multiparty": "^4.3.0",
"next": "^15.5.9",
"next-i18next": "^15.4.2",
"next-themes": "^0.4.4",
"papaparse": "^5.5.3",
"pdfjs-dist": "5.3.93",
"radix-ui": "^1.6.2",
"react": "18.2.0",
"react-d3-tree": "^3.6.6",
"react-dom": "18.2.0",
"react-hook-form": "^7.54.1",
"react-i18next": "^15.5.3",
"react-markdown": "^9.0.3",
"react-pdf": "10.1.0",
"react-shiki": "^0.10.1",
"react-syntax-highlighter": "^16.1.0",
"recharts": "^2.15.0",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"tailwind-merge": "^3",
"tw-animate-css": "^1.4.0",
"tw-shimmer": "^0.4.11",
"unified": "^11.0.0",
"unist-util-visit": "^5.0.0",
"uuid": "^11.1.0",
"zustand": "^5.0.9"
},
"devDependencies": {
"@playwright/test": "1.62.1",
"@tailwindcss/postcss": "^4",
"@types/js-yaml": "^4.0.9",
"@types/mdast": "4.0.4",
"@types/node": "22.15.16",
"@types/papaparse": "^5.3.16",
"@types/react": "18.3.20",
"@types/react-dom": "18.3.6",
"@types/unist": "3.0.3",
"eslint": "^9.34.0",
"eslint-config-next": "15.5.7",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"postcss": "^8",
"postcss-nested": "^7",
"prettier": "^3.2.5",
"tailwindcss": "^4",
"typescript": "5.8.3"
}
}