1
0

package.json 910 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "version": "1.15.13",
  4. "name": "@opencode-ai/effect-drizzle-sqlite",
  5. "type": "module",
  6. "license": "MIT",
  7. "private": true,
  8. "scripts": {
  9. "test": "bun test --timeout 30000",
  10. "test:ci": "mkdir -p .artifacts/unit && bun test --timeout 30000 --reporter=junit --reporter-outfile=.artifacts/unit/junit.xml",
  11. "typecheck": "tsgo --noEmit"
  12. },
  13. "exports": {
  14. ".": "./src/index.ts",
  15. "./effect-sqlite": "./src/effect-sqlite/index.ts",
  16. "./effect-sqlite/migrator": "./src/effect-sqlite/migrator.ts",
  17. "./sqlite-core/effect": "./src/sqlite-core/effect/index.ts"
  18. },
  19. "devDependencies": {
  20. "@effect/sql-sqlite-bun": "catalog:",
  21. "@tsconfig/bun": "catalog:",
  22. "@types/bun": "catalog:",
  23. "@typescript/native-preview": "catalog:"
  24. },
  25. "dependencies": {
  26. "drizzle-orm": "catalog:",
  27. "effect": "catalog:"
  28. }
  29. }