mirror of https://github.com/buster-so/buster.git
41 lines
1.1 KiB
JSON
41 lines
1.1 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": "node scripts/validate-env.js",
|
||
|
"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",
|
||
|
"test": "vitest run",
|
||
|
"test:coverage": "vitest run --coverage",
|
||
|
"test:watch": "vitest watch",
|
||
|
"typecheck": "tsc --noEmit"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"@ai-sdk/openai": "^1.3.22",
|
||
|
"@buster/database": "workspace:*",
|
||
|
"@buster/typescript-config": "workspace:*",
|
||
|
"@buster/vitest-config": "workspace:*",
|
||
|
"ai": "catalog:",
|
||
|
"zod": "catalog:"
|
||
|
}
|
||
|
}
|