-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.51 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"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": {
"*": {}
}
}