-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.69 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.69 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
{
"name": "eden-tanstack-query",
"version": "0.1.0-alpha.4",
"description": "TanStack Query integration for Elysia Eden - type-safe queries and mutations",
"keywords": [
"eden",
"elysia",
"react-query",
"rpc",
"solid-query",
"svelte-query",
"tanstack-query",
"type-safe",
"vue-query"
],
"homepage": "https://github.com/Frank-III/eden-tanstack-query",
"bugs": "https://github.com/Frank-III/eden-tanstack-query/issues",
"license": "MIT",
"author": {
"name": "Frank-III",
"url": "https://github.com/Frank-III"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Frank-III/eden-tanstack-query.git"
},
"files": [
"dist",
"src"
],
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "vp pack",
"test": "vp test",
"test:types": "vp exec tsc --project tsconfig.test.json",
"prepublishOnly": "vp run build",
"fmt": "vp fmt",
"fmt:check": "vp fmt --check",
"prepare": "vp config"
},
"devDependencies": {
"@elysiajs/eden": "^1.4.9",
"@tanstack/query-core": "^5.96.2",
"elysia": "^1.4.28",
"expect-type": "^1.3.0",
"typescript": "^6.0.2",
"vite-plus": "latest"
},
"peerDependencies": {
"@elysiajs/eden": ">=1.0.0",
"@tanstack/query-core": ">=5.0.0",
"elysia": ">=1.0.0"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
}
}
}