-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
69 lines (69 loc) · 1.96 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
{
"name": "llama-index-javascript",
"version": "0.1.0",
"author": {
"name": "Wassim Chegham",
"email": "[email protected]"
},
"scripts": {
"format": "prettier --ignore-unknown --cache --check .",
"format:write": "prettier --ignore-unknown --write .",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate": "tsx app/api/chat/engine/generate.ts"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@azure/identity": "^4.5.0",
"@e2b/code-interpreter": "^1.0.4",
"@llamaindex/chat-ui": "0.0.14",
"@llamaindex/openai": "^0.1.52",
"@llamaindex/readers": "^2.0.0",
"@radix-ui/react-accordion": "^1.2.2",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.1.0",
"ai": "^4.0.3",
"ajv": "^8.12.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.3.1",
"duck-duck-scrape": "^2.2.5",
"formdata-node": "^6.0.3",
"got": "^14.4.1",
"llamaindex": "^0.9.1",
"lucide-react": "^0.460.0",
"marked": "^14.1.2",
"next": "^15.1.3",
"papaparse": "^5.4.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"supports-color": "^8.1.1",
"tailwind-merge": "^2.6.0",
"tiktoken": "^1.0.15",
"uuid": "^9.0.1",
"wikipedia": "^2.1.2"
},
"devDependencies": {
"@llamaindex/workflow": "^0.0.3",
"@types/node": "^20.17.24",
"@types/papaparse": "^5.3.15",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.4.16",
"cross-env": "^7.0.3",
"eslint": "^9.14.0",
"eslint-config-next": "^15.1.3",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.32",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"tailwindcss": "^3.3.6",
"tsx": "^4.7.2",
"typescript": "^5.3.2"
}
}