package.json 477 B

12345678910111213141516171819
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/quark",
  4. "version": "0.0.0",
  5. "private": true,
  6. "type": "module",
  7. "exports": {
  8. ".": "./src/index.ts",
  9. "./solid": "./src/solid.ts"
  10. },
  11. "scripts": {
  12. "bench:keyed": "bun --conditions=browser bench/keyed.ts",
  13. "bench:row-key": "bun --conditions=browser bench/row-key.ts",
  14. "test": "bun --conditions=browser test"
  15. },
  16. "dependencies": {
  17. "solid-js": "catalog:"
  18. }
  19. }