-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.58 KB
/
package.json
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
{
"name": "@k4l3b4/query-adapters",
"version": "0.9.2",
"description": "@tanstack/query fetching adapters to make your life a little bit easier.",
"files": ["dist", "README.md"],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsup src/index.ts --watch --sourcemap --dts",
"build": "tsup src/index.ts --sourcemap --dts --format cjs,esm"
},
"keywords": [
"tanstack/query",
"react-query",
"query-components",
"data-fetching",
"infinite-query",
"query-adapters"
],
"author": {
"name": "Kaleb Abebe",
"email": "kaleba647@gmail.com",
"url": "https://github.com/k4l3b4"
},
"contributors": [
{
"name": "Kaleb Abebe",
"email": "kaleba647@gmail.com",
"url": "https://github.com/k4l3b4"
}
],
"repository": {
"type": "git",
"url": "https://github.com/k4l3b4/query-adapters.git"
},
"bugs": {
"url": "https://github.com/k4l3b4/query-adapters/issues"
},
"homepage": "https://github.com/k4l3b4/query-adapters#readme",
"license": "MIT",
"peerDependencies": {
"@tanstack/react-query": "^5.0.0",
"react": "^16 || ^17 || ^18 || ^19",
"react-dom": "^16 || ^17 || ^18 || ^19"
},
"devDependencies": {
"typescript": "^5.7.2",
"@biomejs/biome": "1.9.4",
"@tanstack/react-query": "^5.62.7",
"@types/node": "^22.10.10",
"@types/react": "^18.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^8.3.5"
}
}