mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-22 03:45:23 +00:00
30 lines
909 B
JSON
30 lines
909 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"version": "1.15.5",
|
|
"name": "@opencode-ai/effect-drizzle-sqlite",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"test": "bun test --timeout 30000",
|
|
"test:ci": "mkdir -p .artifacts/unit && bun test --timeout 30000 --reporter=junit --reporter-outfile=.artifacts/unit/junit.xml",
|
|
"typecheck": "tsgo --noEmit"
|
|
},
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./effect-sqlite": "./src/effect-sqlite/index.ts",
|
|
"./effect-sqlite/migrator": "./src/effect-sqlite/migrator.ts",
|
|
"./sqlite-core/effect": "./src/sqlite-core/effect/index.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@effect/sql-sqlite-bun": "catalog:",
|
|
"@tsconfig/bun": "catalog:",
|
|
"@types/bun": "catalog:",
|
|
"@typescript/native-preview": "catalog:"
|
|
},
|
|
"dependencies": {
|
|
"drizzle-orm": "catalog:",
|
|
"effect": "catalog:"
|
|
}
|
|
}
|