triplit-tanstackdb
Version:
TanStack DB collection adapter for the Triplit real-time, offline-first sync engine. Enables powerful optimistic updates and reactive, cross-source queries.
101 lines (100 loc) • 2.57 kB
JSON
{
"name": "triplit-tanstackdb",
"version": "0.2.6",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16"
},
"license": "MIT",
"keywords": [
"tanstack",
"tanstack-db",
"tanstack-query",
"triplit",
"database",
"real-time",
"realtime",
"sync",
"synchronization",
"offline",
"offline-first",
"local-first",
"reactive",
"optimistic-updates",
"collection",
"adapter",
"integration",
"crdt",
"websocket",
"collaboration",
"multi-user",
"data-layer",
"state-management",
"react",
"query",
"vue",
"svelte",
"solid",
"pridepack"
],
"devDependencies": {
"@types/node": "^22.10.2",
"pridepack": "2.6.4",
"standard-version": "^9.5.0",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"scripts": {
"release": "standard-version && git push --follow-tags origin main",
"release:patch": "npm version patch && git push --follow-tags origin main",
"release:minor": "npm version minor && git push --follow-tags origin main",
"release:major": "npm version major && git push --follow-tags origin main",
"prepublishOnly": "pridepack clean && pridepack build",
"build": "pridepack build",
"type-check": "pridepack check",
"clean": "pridepack clean",
"watch": "pridepack watch",
"start": "pridepack start",
"dev": "pridepack dev",
"test": "vitest --run"
},
"private": false,
"description": "TanStack DB collection adapter for the Triplit real-time, offline-first sync engine. Enables powerful optimistic updates and reactive, cross-source queries.",
"repository": {
"url": "https://github.com/doeixd/triplit-tanstackdb",
"type": "git"
},
"homepage": "https://github.com/doeixd/triplit-tanstackdb",
"bugs": {
"url": "https://github.com/doeixd/triplit-tanstackdb/issues"
},
"author": "Patrick Glenn",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@tanstack/db": "^0.1.0",
"@triplit/client": "^1.0.50"
},
"types": "./dist/types/index.d.ts",
"main": "./dist/cjs/production/index.js",
"module": "./dist/esm/production/index.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"development": {
"require": "./dist/cjs/development/index.js",
"import": "./dist/esm/development/index.js"
},
"require": "./dist/cjs/production/index.js",
"import": "./dist/esm/production/index.js"
}
},
"typesVersions": {
"*": {}
}
}