UNPKG

@tanstack/db

Version:

A reactive client store for building super fast apps on sync

66 lines 3.2 kB
{ "name": "@tanstack/db", "version": "0.9.0", "description": "A reactive client store for building super fast apps on sync", "author": "Kyle Mathews", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/TanStack/db.git", "directory": "packages/db" }, "homepage": "https://tanstack.com/db", "keywords": [ "optimistic", "typescript", "tanstack-intent" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } }, "./package.json": "./package.json" }, "sideEffects": false, "files": [ "dist", "src", "skills" ], "dependencies": { "@standard-schema/spec": "^1.1.0", "@tanstack/pacer-lite": "^0.2.1", "@tanstack/db-ivm": "0.1.20" }, "peerDependencies": { "typescript": ">=4.7" }, "devDependencies": { "@tanstack/config": "^0.22.2", "@vitest/coverage-istanbul": "^3.2.4", "arktype": "^2.1.29", "mitt": "^3.0.1", "superjson": "^2.2.6", "temporal-polyfill": "^0.3.0" }, "scripts": { "build": "vite build", "build:minified": "vite build --minify", "dev": "vite build --watch", "lint": "eslint . --fix", "test": "vitest --run", "test:facade-retention": "node --expose-gc --import tsx tests/facade-retention.probe.ts", "test:oracles": "vitest --run tests/collection-cleanup-restart-oracle.test.ts tests/effect-disposal-oracle.test.ts tests/collection-metadata-publication-oracle.property.test.ts tests/collection-state-retention-oracle.property.test.ts tests/collection-subscription-lifecycle-history.property.test.ts tests/collection-subscription-lifecycle-oracle.test.ts tests/collection-subscription-lifecycle-publication.property.test.ts tests/collection-subscription-replay-oracle.property.test.ts tests/d2-source-reconciliation-oracle.property.test.ts tests/query/includes-collection-oracle.property.test.ts tests/query/includes-functional-projection-oracle.test.ts tests/query/includes-functional-input-boundary.test.ts tests/query/includes-context-transport-oracle.test.ts tests/query/includes-cross-formulation-oracle.property.test.ts tests/query/includes-optimistic-oracle.property.test.ts tests/query/includes-oracle.property.test.ts tests/query/includes-publication-oracle.test.ts tests/query/includes-query-shape-oracle.test.ts tests/query/includes-temporal-oracle.test.ts tests/query/includes-work-counter-oracle.test.ts tests/query/load-subset-oracle.property.test.ts tests/query/load-subset-replay-refinement-oracle.test.ts tests/query/load-subset-source-readiness-refinement-oracle.test.ts tests/query/load-subset-transaction-refinement-oracle.test.ts tests/query/ordered-source-loader-state.test.ts tests/query/ordered-demand-retirement.test.ts tests/query/ordered-lifecycle-oracle.property.test.ts tests/query/ordered-work-oracle.property.test.ts tests/query/pagination-oracle.property.test.ts" } }