-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.64 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.64 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
101
102
103
104
{
"name": "@doeixd/tanstackstart-db",
"version": "0.0.4",
"description": "Typed schema, view, query, action, route, and hydration helpers for TanStack DB.",
"keywords": [
"crud",
"cursor",
"database",
"event-source",
"hydration",
"infinite-scroll",
"live",
"optimistic",
"pagination",
"react",
"realtime",
"schema",
"sse",
"ssr",
"tanstack",
"tanstack-db",
"tanstack-start"
],
"homepage": "https://github.com/doeixd/tanstackstart-db#readme",
"bugs": {
"url": "https://github.com/doeixd/tanstackstart-db/issues"
},
"license": "MIT",
"author": "Patrick Glenn <doeixd@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/doeixd/tanstackstart-db.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./live-client": "./dist/live-client.mjs",
"./live-server": "./dist/live-server.mjs",
"./local-storage-collection": "./dist/local-storage-collection.mjs",
"./pagination": "./dist/pagination.mjs",
"./query-collection": "./dist/query-collection.mjs",
"./react": "./dist/react.mjs",
"./schema": "./dist/schema.mjs",
"./server": "./dist/server.mjs",
"./sync-collection": "./dist/sync-collection.mjs",
"./testing": "./dist/testing.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch",
"test": "vp test",
"check": "vp check",
"prepublishOnly": "vp run build",
"prepare": "vp config"
},
"dependencies": {
"@tanstack/db": "^0.6.7",
"@types/react": "^19.2.16"
},
"devDependencies": {
"@tanstack/query-core": "^5.100.14",
"@tanstack/query-db-collection": "^1.0.38",
"@tanstack/react-router": "^1.170.10",
"@types/jsdom": "^28.0.3",
"@types/node": "^25.6.2",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "7.0.0-dev.20260509.2",
"bumpp": "^11.1.0",
"jsdom": "^29.1.1",
"react-dom": "^19.2.7",
"typescript": "^6.0.3",
"vite-plus": "catalog:"
},
"peerDependencies": {
"@tanstack/query-core": "^5.100.14",
"@tanstack/query-db-collection": "^1.0.38",
"@tanstack/react-router": "^1.170.10",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"@tanstack/query-core": {
"optional": true
},
"@tanstack/query-db-collection": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.29.2"
}