-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 800 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 800 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
33
{
"name": "llama-parse-cli",
"version": "0.0.2",
"description": "A CLI for parsing files with LlamaIndex Parser",
"main": "dist/index.js",
"type": "module",
"bin": {
"llama-parse": "./dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup src/index.ts",
"prepublish": "tsup src/index.ts"
},
"keywords": ["llama-index", "llama-parse"],
"author": "Thierry Santos <thierrysantoos123@gmail.com>",
"license": "MIT",
"devDependencies": {
"@tsconfig/node20": "20.1.4",
"@types/chalk": "2.2.0",
"@types/node": "20.14.10",
"tsup": "8.1.0",
"tsx": "4.16.2",
"typescript": "5.5.3"
},
"dependencies": {
"chalk": "5.3.0",
"commander": "12.1.0",
"inquirer": "10.0.1",
"ora": "8.0.1",
"zod": "3.23.8"
}
}