-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.14 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
{
"name": "query-cache-inspector",
"version": "0.1.0",
"private": true,
"description": "A Chrome/Edge DevTools panel that visualizes a live React Query (TanStack Query) cache — queries, statuses, observers, in-flight fetches, and cache events.",
"type": "module",
"homepage": "https://www.frontendcache.com",
"repository": {
"type": "git",
"url": "git+https://github.com/frontendcache/query-cache-inspector.git"
},
"bugs": {
"url": "https://github.com/frontendcache/query-cache-inspector/issues"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "tsx --test test/*.test.ts",
"dev": "tsc -p tsconfig.build.json --watch",
"demo": "node scripts/serve.mjs"
},
"devDependencies": {
"@types/chrome": "^0.0.268",
"@types/node": "^20.14.0",
"tsx": "^4.16.0",
"typescript": "^5.5.0"
},
"keywords": [
"react-query",
"tanstack-query",
"swr",
"devtools",
"chrome-extension",
"cache",
"debugging",
"server-state",
"query-cache",
"inspector"
]
}