-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.98 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.98 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
{
"name": "@daveyplate/better-auth-tanstack",
"homepage": "https://github.com/daveyplate/better-auth-tanstack",
"version": "1.3.6",
"description": "Tanstack hooks for better-auth",
"scripts": {
"build": "tsup --clean --dts",
"dev": "tsc-watch --onSuccess 'biome check'",
"prepublishOnly": "rm -rf dist && tsup --clean --dts"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./server": {
"import": {
"types": "./dist/server.d.ts",
"default": "./dist/server.js"
},
"require": {
"types": "./dist/server.d.cts",
"default": "./dist/server.cjs"
}
}
},
"files": [
"src",
"dist"
],
"keywords": [
"better-auth",
"tanstack",
"react-query",
"tanstack-query",
"query",
"auth",
"hooks",
"prefetch",
"ssr",
"typescript"
],
"author": "daveycodez",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.15.29",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.5",
"better-auth": "^1.2.8",
"next": "^15.3.3",
"tsc-watch": "^7.1.1",
"tsup": "^8.5.0",
"tsx": "^4.19.4",
"turbo": "^2.5.4",
"typescript": "^5.8.3"
},
"peerDependencies": {
"@tanstack/query-core": ">=5.65.0",
"@tanstack/react-query": ">=5.65.0",
"better-auth": ">=1.2.8",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"packageManager": "[email protected]"
}