forked from TanStack/db
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.49 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.49 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
{
"name": "@tanstack/react-db",
"description": "React integration for @tanstack/db",
"version": "0.1.30",
"author": "Kyle Mathews",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TanStack/db.git",
"directory": "packages/react-db"
},
"homepage": "https://tanstack.com/db",
"keywords": [
"optimistic",
"react",
"typescript"
],
"packageManager": "pnpm@10.18.2",
"dependencies": {
"@tanstack/db": "workspace:*",
"use-sync-external-store": "^1.6.0"
},
"devDependencies": {
"@electric-sql/client": "1.0.14",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"@types/use-sync-external-store": "^1.5.0",
"@vitest/coverage-istanbul": "^3.2.4",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"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"
},
"files": [
"dist",
"src"
],
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"peerDependencies": {
"react": ">=16.8.0"
},
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"test": "npx vitest --run",
"lint": "eslint . --fix"
},
"sideEffects": false,
"type": "module",
"types": "dist/esm/index.d.ts"
}