buster/packages/stored-values/package.json

44 lines
1.3 KiB
JSON

{
"name": "@buster/stored-values",
"version": "1.0.0",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./schemas": {
"types": "./dist/schemas.d.ts",
"default": "./dist/schemas.js"
},
"./search": {
"types": "./dist/search.d.ts",
"default": "./dist/search.js"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "tsx scripts/validate-env.ts",
"build": "tsc",
"build:commonjs": "tsc --module commonjs --moduleResolution node",
"build:commonjs:watch": "npm run build:commonjs && tsc --module commonjs --moduleResolution node --watch",
"lint": "biome check --write",
"test": "vitest run",
"test:unit": "vitest run --exclude '**/*.int.test.ts' --exclude '**/*.integration.test.ts' --passWithNoTests",
"test:integration": "vitest run **/*.int.test.ts **/*.integration.test.ts",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ai-sdk/openai": "^1.3.23",
"@buster/database": "workspace:*",
"@buster/env-utils": "workspace:*",
"@buster/typescript-config": "workspace:*",
"@buster/vitest-config": "workspace:*",
"ai": "catalog:",
"zod": "^3.0.0"
}
}