-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.74 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.74 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
{
"name": "agent-pdf",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:e2e": "playwright test"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@ant-design/cssinjs": "^2.1.2",
"@ant-design/icons": "^6.1.0",
"@ant-design/nextjs-registry": "^1.3.0",
"@hookform/resolvers": "^5.2.2",
"@langchain/community": "^0.3.18",
"@langchain/core": "^0.3.24",
"@pdf-lib/fontkit": "^1.1.1",
"@pinecone-database/pinecone": "^7.1.0",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@supabase/auth-helpers-nextjs": "^0.14.0",
"@supabase/auth-ui-react": "^0.4.7",
"@supabase/auth-ui-shared": "^0.1.8",
"@supabase/ssr": "^0.9.0",
"@supabase/supabase-js": "^2.98.0",
"@tailwindcss/postcss": "^4.2.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@upstash/redis": "^1.36.3",
"@vercel/blob": "^2.3.1",
"antd": "^6.3.1",
"autoprefixer": "^10.4.27",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.3.1",
"langchain": "^0.3.7",
"lucide-react": "^0.577.0",
"next": "^14.2.35",
"nodemailer": "^8.0.2",
"openai": "^6.27.0",
"pdf-lib": "^1.17.1",
"pdf-parse": "^2.4.5",
"pdf-to-png-converter": "^3.14.0",
"pdf2json": "^3.1.4",
"pdfjs-dist": "^3.11.174",
"postcss": "^8.5.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^15.0.0",
"react-hook-form": "^7.71.2",
"react-markdown": "^10.1.0",
"resend": "^6.9.3",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^3.4.19",
"tesseract.js": "^7.0.0",
"typescript": "^5.9.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.5",
"@types/nodemailer": "^7.0.11",
"eslint": "^9.39.4",
"eslint-config-next": "^16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"node-loader": "^2.1.0",
"prettier": "^3.8.1"
}
}