-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 1.96 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
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@tiesen/effect-tanstack-query",
"version": "0.0.20",
"private": false,
"description": "Effortlessly bridge Effect HTTP API clients with TanStack Query. Enjoy end-to-end type safety, zero-boilerplate options, and built-in streaming support out of the box.",
"keywords": [
"effect",
"effect-ts",
"http-api",
"http-client",
"proxy",
"react-query",
"tanstack",
"tanstack-query",
"type-safe",
"typescript"
],
"bugs": {
"url": "https://github.com/tiesen243/effect-tanstack-query/issues"
},
"license": "MIT",
"author": {
"name": "Tiesen",
"email": "tiesen243@tiesen.id.vn",
"url": "tiesen.id.vn"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tiesen243/effect-tanstack-query.git"
},
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./react": {
"types": "./dist/react.d.mts",
"default": "./dist/react.mjs"
},
"./vue": {
"types": "./dist/vue.d.mts",
"default": "./dist/vue.mjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"format": "oxfmt --check",
"format:fix": "oxfmt",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"tegami": "bun run tegami.ts",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/react": "^19.2.18",
"@types/vue": "^2.0.0",
"oxfmt": "^0.63.0",
"oxlint": "^1.78.0",
"tegami": "^1.3.5",
"tsdown": "^0.22.14",
"typescript": "^7.0.2"
},
"peerDependencies": {
"@tanstack/query-core": ">=5.100.0",
"effect": ">=4.0.0-rc.109",
"react": ">=19.2.8",
"vue": ">=3.5.40"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"vue": {
"optional": true
}
},
"packageManager": "bun@1.3.0",
"patchedDependencies": {
"tegami@1.3.5": "patches/tegami@1.3.5.patch"
}
}