-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.45 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.45 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
{
"name": "@tanstack-query-firebase/react",
"version": "2.0.1",
"description": "TanStack Query bindings for Firebase and React",
"type": "module",
"scripts": {
"test": "vitest --dom --coverage",
"test:ci": "vitest --dom --coverage --run",
"build": "tsup",
"serve:coverage": "npx serve coverage",
"emulator": "firebase emulators:start --project demo-test-project",
"emulator:kill": "lsof -t -i:4001 -i:8080 -i:9000 -i:9099 -i:9199 -i:8085 | xargs kill -9",
"check": "tsc --noEmit",
"publish-package": "pnpm run build && cd dist && npm publish"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./auth": {
"import": "./dist/auth/index.js",
"types": "./dist/auth/index.d.ts"
},
"./firestore": {
"import": "./dist/firestore/index.js",
"types": "./dist/firestore/index.d.ts"
},
"./data-connect": {
"import": "./dist/data-connect/index.js",
"types": "./dist/data-connect/index.d.ts"
}
},
"author": {
"name": "Invertase",
"email": "oss@invertase.io",
"url": "https://github.com/invertase/tanstack-query-firebase"
},
"license": "Apache-2.0",
"devDependencies": {
"@dataconnect/default-connector": "workspace:*",
"@testing-library/react": "^16.0.1",
"@types/react": "^19.0.1",
"react": "^19.0.0"
},
"peerDependencies": {
"@tanstack/react-query": "^5",
"firebase": "^11.3.0"
}
}