forked from nucab/react-clear-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.61 KB
/
package.json
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
{
"name": "react-clear-cache-v2",
"version": "0.0.0-development",
"description": "A component to manage application updates with an enhancement to the [react-clear-cache](https://www.npmjs.com/package/react-clear-cache) package.",
"license": "MIT",
"author": {
"name": "Khánh Hoàng",
"email": "[email protected]",
"url": "https://khanh.land"
},
"repository": {
"type": "git",
"url": "https://github.com/hckhanh/react-clear-cache.git"
},
"type": "module",
"main": "dist/index.es.js",
"module": "dist/index.es.js",
"browser": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"bin": "./bin/cli.js",
"types": "dist/index.d.ts",
"files": [
"bin",
"dist"
],
"engines": {
"node": ">=16"
},
"release": {
"branches": [
"main"
]
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build",
"semantic-release": "semantic-release"
},
"dependencies": {
"minimist": "1.2.7",
"use-persisted-state-v2": "1.1.2",
"uuid": "8.3.2"
},
"peerDependencies": {
"prop-types": "^15.8.1",
"react": "^18"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-typescript": "8.5.0",
"@types/react": "18.0.26",
"gh-pages": "4.0.0",
"prettier": "2.8.1",
"rollup": "2.79.1",
"rollup-plugin-cleandir": "2.0.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"semantic-release": "^19.0.5",
"tslib": "2.4.1",
"typescript": "4.9.4"
},
"packageManager": "[email protected]"
}