-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.38 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": "suspense-data-loader",
"version": "1.0.0",
"description": "Experimental. Does not support SSR.",
"author": "David Burles",
"license": "MIT",
"repository": "github:dburles/suspense-data-loader",
"bugs": "https://github.com/dburles/suspense-data-loader/issues",
"homepage": "https://github.com/dburles/suspense-data-loader#readme",
"keywords": [
"data",
"loading",
"suspense",
"react",
"react-hooks",
"fetch"
],
"files": [
"createDataCache.mjs",
"createSubscription.mjs",
"DataCacheContext.mjs",
"dataLoader.mjs",
"serializeKey.mjs",
"useDataLoader.mjs",
"usePreloadedData.mjs"
],
"exports": {
"./createDataCache.mjs": "./createDataCache.mjs",
"./DataCacheContext.mjs": "./DataCacheContext.mjs",
"./useDataLoader.mjs": "./useDataLoader.mjs",
"./usePreloadedData.mjs": "./usePreloadedData.mjs"
},
"engines": {
"node": ">= 16.0.0"
},
"sideEffects": false,
"devDependencies": {
"eslint": "^8.14.0",
"eslint-plugin-react-hooks": "^4.5.0",
"prettier": "^2.6.2"
},
"dependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"peerDependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"scripts": {
"eslint": "eslint .",
"prettier": "prettier -c .",
"test": "npm run eslint && npm run prettier",
"prepublishOnly": "npm test"
}
}