-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (53 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (53 loc) · 1.3 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
{
"name": "react-router-middleware-plus",
"version": "1.4.1",
"description": "基于react-router-dom v6版本的路由权限配置化解决方案,引入中间件middleware的概念,零成本式解决路由权限控制难题。",
"keywords": [
"react",
"router",
"react-router",
"auth",
"middleware",
"authentication",
"react router auth"
],
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"scripts": {
"dev": "vite",
"build": "vite build && tsc -p tsconfig.build.json",
"preview": "vite preview"
},
"files": ["dist"],
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"author": {
"name": "huxiaoshuai",
"email": "justbecoder@aliyun.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/justbecoder/react-router-middleware-plus.git"
},
"dependencies": {
},
"devDependencies": {
"@vitejs/plugin-react": "^1.3.0",
"vite": "^2.9.9",
"react-router-dom": "^6.3.0",
"typescript": "^4.6.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-router-dom": "^5.3.3"
},
"peerDependencies": {
}
}