-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.14 KB
/
package.json
File metadata and controls
53 lines (53 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
45
46
47
48
49
50
51
52
53
{
"name": "@thinkgrid/react-local-fetch",
"version": "0.3.0",
"description": "Resilient, encrypted, local-first fetching for React and Next.js using IndexedDB.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "akosidencio",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest",
"lint": "tsc --noEmit"
},
"keywords": [
"react",
"nextjs",
"swr",
"indexeddb",
"local-first",
"encryption",
"aes-gcm",
"data-fetching",
"caching",
"offline-first",
"react-hooks",
"crypto",
"secure-storage",
"thinkgrid"
],
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"dependencies": {},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"fake-indexeddb": "^6.2.5",
"jsdom": "^29.0.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}