-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 912 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 912 Bytes
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
{
"name": "@nolanx/data-cache",
"version": "0.0.5",
"description": "A flexible caching library for JavaScript/TypeScript with multiple storage provider support.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts",
"prepackage:publish": "npm run build",
"package:publish": "npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/dongnguyenvie/data-cache.git"
},
"keywords": [
"cache",
"data-cache",
"typescript",
"storage",
"localstorage",
"indexeddb",
"memory-cache",
"react-hook"
],
"author": "nolanx",
"license": "MIT",
"dependencies": {},
"peerDependencies": {
"react": "^18.0.0"
},
"devDependencies": {
"typescript": "^5.0.0",
"jest": "^29.0.0",
"eslint": "^8.0.0",
"@types/react": "^18.0.0"
}
}