-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.6 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
{
"name": "@decocms/tanstack",
"version": "0.0.0",
"type": "module",
"description": "Deco framework binding for TanStack Start + Cloudflare Workers",
"repository": {
"type": "git",
"url": "https://github.com/decocms/blocks.git",
"directory": "packages/tanstack"
},
"main": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./vite": "./src/vite/plugin.js",
"./daemon": "./src/daemon/index.ts",
"./sdk/createInvoke": "./src/sdk/createInvoke.ts",
"./sdk/cookiePassthrough": "./src/sdk/cookiePassthrough.ts",
"./sdk/deferredSectionLoader": "./src/sdk/deferredSectionLoader.ts"
},
"scripts": {
"build": "tsc",
"test": "vitest run --root ../.. packages/tanstack/",
"typecheck": "tsc --noEmit",
"lint:unused": "knip"
},
"dependencies": {
"@decocms/blocks": "workspace:*",
"@decocms/blocks-admin": "workspace:*",
"@decocms/blocks-cli": "workspace:*",
"@deco-cx/warp-node": "^0.3.16",
"fast-json-patch": "^3.1.0",
"ws": "^8.18.0"
},
"peerDependencies": {
"@tanstack/react-query": ">=5.0.0",
"@tanstack/react-start": ">=1.0.0",
"@tanstack/store": ">=0.7.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"vite": ">=6.0.0 || >=7.0.0 || >=8.0.0"
},
"devDependencies": {
"@tanstack/react-query": "^5.96.0",
"@tanstack/store": "^0.9.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/ws": "^8.18.0",
"knip": "^5.86.0",
"typescript": "^5.9.0",
"vite": ">=6.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}