UNPKG

@tanstack/db

Version:

A reactive client store for building super fast apps on sync

62 lines 1.47 kB
{ "name": "@tanstack/db", "version": "0.5.16", "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" ], "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" ], "dependencies": { "@standard-schema/spec": "^1.0.0", "@tanstack/pacer-lite": "^0.1.1", "@tanstack/db-ivm": "0.1.14" }, "peerDependencies": { "typescript": ">=4.7" }, "devDependencies": { "@tanstack/config": "^0.22.2", "@vitest/coverage-istanbul": "^3.2.4", "arktype": "^2.1.28", "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" } }