-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 817 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 817 Bytes
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
{
"name": "render-workflows-llamaindex",
"version": "1.0.0",
"license": "MIT",
"description": "Document intelligence pipeline powered by LlamaCloud and Render Workflows",
"type": "module",
"scripts": {
"build": "tsc && cp -r static dist/static",
"start": "node dist/main.js",
"start:tasks": "node dist/tasks/index.js"
},
"dependencies": {
"@llamaindex/llama-cloud": "^2.4.1",
"@renderinc/sdk": "^0.5.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"file-type": "^22.0.1",
"multer": "^1.4.5-lts.2",
"pg": "^8.13.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/multer": "^1.4.12",
"@types/node": "^22.0.0",
"@types/pg": "^8.11.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20"
}
}