-
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.48 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.48 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/angular",
"version": "1.0.2",
"description": "TanStack Query bindings for Firebase and Angular",
"type": "module",
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"test": "vitest --dom --coverage",
"test:ci": "vitest --dom --coverage --run",
"publish-package": "pnpm run build && cd dist && npm publish"
},
"typings": "./index.d.ts",
"module": "./index.js",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js",
"default": "./data-connect/index.js"
},
"./data-connect": {
"import": "./data-connect/index.js",
"types": "./data-connect/index.d.ts",
"default": "./data-connect/index.js"
}
},
"author": {
"name": "Invertase",
"email": "oss@invertase.io",
"url": "https://github.com/invertase/tanstack-query-firebase"
},
"repository": {
"type": "git",
"url": "https://github.com/invertase/tanstack-query-firebase"
},
"license": "Apache-2.0",
"devDependencies": {
"@dataconnect/default-connector": "file:../../dataconnect-sdk/js/default-connector",
"@testing-library/angular": "^18.0.0",
"@testing-library/dom": "^10.4.0",
"tsup": "^8.4.0"
},
"peerDependencies": {
"@angular/common": "^20.0.0 || ^19.0.0",
"@angular/core": "^20.0.0 || ^19.0.0",
"@angular/fire": "^20.0.0 || ^19.0.0",
"@angular/platform-browser-dynamic": "^20.0.0 || ^19.0.0",
"@tanstack/angular-query-experimental": "^5.66.4"
}
}