-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.26 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
{
"name": "@sjpnz/query-shared-worker-persister",
"version": "0.2.0",
"description": "A persister for storing query data in a SharedWorker, to be used with TanStack/Query",
"keywords": [
"cache",
"cross-tab",
"persistence",
"persister",
"react-query",
"shared-worker",
"sharedworker",
"tanstack",
"tanstack-query"
],
"homepage": "https://github.com/sjp/query-shared-worker-persister",
"bugs": {
"url": "https://github.com/sjp/query-shared-worker-persister/issues"
},
"license": "MIT",
"author": {
"name": "Simon Potter",
"url": "https://sjp.co.nz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sjp/query-shared-worker-persister.git"
},
"files": [
"dist",
"CHANGELOG.md"
],
"type": "module",
"sideEffects": [
"**/cache.worker.js"
],
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./cache.worker.js": "./dist/cache.worker.js",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsc && vp pack",
"check": "vp check",
"check:fix": "vp check --fix",
"check:package": "publint && attw --pack . --profile esm-only",
"check:toolchain": "node scripts/check-vite-override.mjs",
"check:types-consumer": "tsc -p scripts/check-types-consumer",
"lint": "vp lint",
"playwright:install": "playwright install --with-deps chromium",
"test": "vp test run",
"test:watch": "vp test"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@tanstack/query-async-storage-persister": "^5.100.14",
"@tanstack/query-core": "^5.102.8",
"@tanstack/query-persist-client-core": "^5.56.2",
"@vitest/browser-playwright": "4.1.11",
"playwright": "^1.63.0",
"publint": "^0.3.24",
"typescript": "^7.0.2",
"vite-plus": "0.3.0"
},
"peerDependencies": {
"@tanstack/query-async-storage-persister": "^5.100.14",
"@tanstack/query-persist-client-core": "^5.56.2"
},
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@0.3.0"
},
"engines": {
"node": ">=24"
},
"packageManager": "npm@11.16.0"
}