mirror of
https://github.com/run-llama/llama_cloud_services.git
synced 2026-07-19 16:43:32 -04:00
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"name": "llamaparse-demo",
|
|
"version": "0.1.0",
|
|
"description": "Demo for LlamaParse in TypeScript",
|
|
"type": "module",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"There are no tests\"",
|
|
"start": "pnpm exec tsx src/index.ts",
|
|
"lint": "eslint ./src/",
|
|
"format": "prettier --write ./src/",
|
|
"build": "tsc",
|
|
"dev": "pnpm exec tsx --watch src/index.ts"
|
|
},
|
|
"keywords": [
|
|
"ai",
|
|
"ocr",
|
|
"parsing",
|
|
"intelligent-document-processing",
|
|
"pdf",
|
|
"llms"
|
|
],
|
|
"author": "LlamaIndex",
|
|
"license": "MIT",
|
|
"packageManager": "pnpm@10.12.4",
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.32.0",
|
|
"@types/figlet": "^1.7.0",
|
|
"@types/node": "^24.1.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.38.0",
|
|
"@typescript-eslint/parser": "^8.38.0",
|
|
"eslint": "^9.32.0",
|
|
"globals": "^16.3.0",
|
|
"jiti": "^2.5.1",
|
|
"prettier": "^3.6.2",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "^8.38.0"
|
|
},
|
|
"dependencies": {
|
|
"@ai-sdk/openai": "^1.3.23",
|
|
"ai": "^4.3.19",
|
|
"consola": "^3.4.2",
|
|
"figlet": "^1.8.2",
|
|
"llama-cloud-services": "link:../../../ts/llama_cloud_services",
|
|
"picocolors": "^1.1.1"
|
|
}
|
|
}
|