mirror of
https://github.com/run-llama/LlamaIndexTS.git
synced 2026-07-16 07:14:29 -04:00
26 lines
1.2 KiB
JSON
26 lines
1.2 KiB
JSON
{
|
|
"name": "@llamaindex/resolution-tests",
|
|
"private": true,
|
|
"version": "0.0.2",
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "pnpm run test:node && pnpm run test:node16 && pnpm run test:nodenext && pnpm run test:bundler",
|
|
"build": "pnpm run build:node16 && pnpm run build:nodenext && pnpm run build:bundler && pnpm run build:node",
|
|
"build:node16": "tsc -p src/tsconfig.node16.json --outDir dist/node16",
|
|
"test:node16": "pnpm run build:node16 && node --test dist/node16/index.e2e.js",
|
|
"build:nodenext": "tsc -p src/tsconfig.nodenext.json --outDir dist/nodenext",
|
|
"test:nodenext": "pnpm run build:nodenext && node --test dist/nodenext/index.e2e.js",
|
|
"build:bundler": "tsc -p src/tsconfig.bundler.json --outDir dist/bundler",
|
|
"test:bundler": "pnpm run build:bundler && node --test dist/bundler/index.e2e.js",
|
|
"build:node": "tsc -p src/tsconfig.node.json --outDir dist/node",
|
|
"test:node": "pnpm run build:node && node --test dist/node/index.e2e.js"
|
|
},
|
|
"devDependencies": {
|
|
"@llamaindex/openai": "workspace:*",
|
|
"@llamaindex/workflow": "workspace:*",
|
|
"@types/node": "^22.9.0",
|
|
"llamaindex": "workspace:*",
|
|
"zod": "^3.25.76"
|
|
}
|
|
}
|