{ "name": "@commontools/memory", "tasks": { "dev": "deno run --allow-read --allow-write --allow-net --allow-ffi --allow-env deno.ts", "check": "deno check .", "just-test": { "description": "Just run unit tests without type checking", "command": "deno test --allow-read --allow-write --allow-net --allow-ffi --allow-env --no-check" }, "test": { "description": "Type check & run tests", "dependencies": [ "check", "just-test" ] }, "migrate": { "description": "Performs database migration", "command": "deno run -A ./migrate.ts" }, "bench": { "description": "Run benchmarks for fact operations", "command": "deno bench --allow-read --allow-write --allow-net --allow-ffi --allow-env --no-check test/memory_bench.ts" } }, "test": { "include": [ "test/*-test.ts" ] }, "exports": { ".": "./lib.ts", "./acl": "./acl.ts", "./deno": "./deno.ts", "./interface": "./interface.ts", "./fact": "./fact.ts", "./changes": "./changes.ts", "./selection": "./selection.ts", "./consumer": "./consumer.ts", "./provider": "./provider.ts", "./commit": "./commit.ts", "./codec": "./codec.ts", "./reference": "./reference.ts", "./schema": "./schema.ts" }, "imports": { "@db/sqlite": "jsr:@db/sqlite@^0.12.0", "@opentelemetry/api": "npm:@opentelemetry/api@^1.9.0" } }