File tree Expand file tree Collapse file tree 6 files changed +84
-84
lines changed
react-router-dom-v5-compat Expand file tree Collapse file tree 6 files changed +84
-84
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"private" : true ,
3
+ "workspaces" : {
4
+ "packages" : [
5
+ " packages/react-router" ,
6
+ " packages/react-router-dom" ,
7
+ " packages/react-router-native" ,
8
+ " packages/router"
9
+ ],
10
+ "nohoist" : [
11
+ " **/react-native" ,
12
+ " **/react-native/**"
13
+ ]
14
+ },
3
15
"scripts" : {
4
16
"build" : " rollup -c && tsc -b" ,
5
17
"clean" : " git clean -fdX ." ,
6
- "lint" : " eslint --cache ." ,
7
18
"format" : " prettier --ignore-path .eslintignore --write ." ,
8
19
"format:check" : " prettier --ignore-path .eslintignore --check ." ,
20
+ "lint" : " eslint --cache ." ,
9
21
"publish" : " node ./scripts/publish.js" ,
10
22
"size" : " filesize" ,
11
23
"test" : " jest" ,
12
24
"version" : " node ./scripts/version.js" ,
13
25
"watch" : " rollup -c -w"
14
26
},
27
+ "jest" : {
28
+ "projects" : [
29
+ " <rootDir>/packages/*"
30
+ ]
31
+ },
15
32
"dependencies" : {
16
33
"@ampproject/filesize" : " ^4.3.0" ,
17
34
"@ampproject/rollup-plugin-closure-compiler" : " ^0.26.0" ,
64
81
"ts-jest" : " ^26.5.6" ,
65
82
"typescript" : " ^4.3.5"
66
83
},
67
- "workspaces" : {
68
- "packages" : [
69
- " packages/react-router" ,
70
- " packages/react-router-dom" ,
71
- " packages/react-router-native" ,
72
- " packages/router"
73
- ],
74
- "nohoist" : [
75
- " **/react-native" ,
76
- " **/react-native/**"
77
- ]
78
- },
79
- "jest" : {
80
- "projects" : [
81
- " <rootDir>/packages/*"
82
- ]
83
- },
84
84
"filesize" : {
85
85
"build/node_modules/@remix-run/router/router.production.min.js" : {
86
86
"none" : " 21 kB"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-router-dom-v5-compat" ,
3
3
"version" : " 6.4.0-pre.2" ,
4
- "author" :
" Remix Software <[email protected] >" ,
5
4
"description" : " Migration path to React Router v6 from v4/5" ,
5
+ "keywords" : [
6
+ " react" ,
7
+ " router" ,
8
+ " route" ,
9
+ " routing" ,
10
+ " history" ,
11
+ " link"
12
+ ],
6
13
"repository" : {
7
14
"type" : " git" ,
8
- "url" : " https://github.com/remix-run/react-router.git " ,
15
+ "url" : " https://github.com/remix-run/react-router" ,
9
16
"directory" : " packages/react-router-dom-v5-compat"
10
17
},
11
18
"license" : " MIT" ,
19
+ "author" :
" Remix Software <[email protected] >" ,
20
+ "sideEffects" : false ,
12
21
"main" : " ./main.js" ,
22
+ "unpkg" : " ./umd/react-router.production.min.js" ,
13
23
"module" : " ./index.js" ,
14
24
"types" : " ./index.d.ts" ,
15
- "unpkg" : " ./umd/react-router.production.min.js" ,
16
25
"dependencies" : {
17
26
"history" : " ^5.3.0" ,
18
27
"react-router" : " 6.4.0-pre.2"
21
30
"react" : " >=16.8" ,
22
31
"react-dom" : " >=16.8" ,
23
32
"react-router-dom" : " 4 || 5"
24
- },
25
- "sideEffects" : false ,
26
- "keywords" : [
27
- " react" ,
28
- " router" ,
29
- " route" ,
30
- " routing" ,
31
- " history" ,
32
- " link"
33
- ]
33
+ }
34
34
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-router-dom" ,
3
3
"version" : " 6.4.0-pre.2" ,
4
- "author" :
" Remix Software <[email protected] >" ,
5
4
"description" : " Declarative routing for React web applications" ,
5
+ "keywords" : [
6
+ " react" ,
7
+ " router" ,
8
+ " route" ,
9
+ " routing" ,
10
+ " history" ,
11
+ " link"
12
+ ],
6
13
"repository" : {
7
14
"type" : " git" ,
8
- "url" : " https://github.com/remix-run/react-router.git " ,
15
+ "url" : " https://github.com/remix-run/react-router" ,
9
16
"directory" : " packages/react-router-dom"
10
17
},
11
18
"license" : " MIT" ,
19
+ "author" :
" Remix Software <[email protected] >" ,
20
+ "sideEffects" : false ,
12
21
"main" : " ./main.js" ,
22
+ "unpkg" : " ./umd/react-router-dom.production.min.js" ,
13
23
"module" : " ./index.js" ,
14
24
"types" : " ./index.d.ts" ,
15
- "unpkg" : " ./umd/react-router-dom.production.min.js" ,
16
25
"dependencies" : {
17
26
"react-router" : " 6.4.0-pre.2"
18
27
},
19
28
"peerDependencies" : {
20
29
"react" : " >=16.8" ,
21
30
"react-dom" : " >=16.8"
22
- },
23
- "sideEffects" : false ,
24
- "keywords" : [
25
- " react" ,
26
- " router" ,
27
- " route" ,
28
- " routing" ,
29
- " history" ,
30
- " link"
31
- ]
31
+ }
32
32
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-router-native" ,
3
3
"version" : " 6.4.0-pre.2" ,
4
- "author" :
" Remix Software <[email protected] >" ,
5
4
"description" : " Declarative routing for React Native applications" ,
5
+ "keywords" : [
6
+ " react" ,
7
+ " router" ,
8
+ " route" ,
9
+ " routing" ,
10
+ " history" ,
11
+ " link"
12
+ ],
6
13
"repository" : {
7
14
"type" : " git" ,
8
- "url" : " https://github.com/remix-run/react-router.git " ,
15
+ "url" : " https://github.com/remix-run/react-router" ,
9
16
"directory" : " packages/react-router-native"
10
17
},
11
18
"license" : " MIT" ,
19
+ "author" :
" Remix Software <[email protected] >" ,
20
+ "sideEffects" : false ,
12
21
"main" : " ./index.js" ,
13
22
"types" : " ./index.d.ts" ,
14
23
"dependencies" : {
15
24
"@ungap/url-search-params" : " ^0.1.4" ,
16
25
"react-router" : " 6.4.0-pre.2"
17
26
},
18
- "peerDependencies" : {
19
- "react" : " >=16.8" ,
20
- "react-native" : " >=0.44"
21
- },
22
27
"devDependencies" : {
23
28
"react-native" : " ^0.61.4"
24
29
},
25
- "sideEffects" : false ,
26
- "keywords" : [
27
- " react" ,
28
- " router" ,
29
- " route" ,
30
- " routing" ,
31
- " history" ,
32
- " link"
33
- ]
30
+ "peerDependencies" : {
31
+ "react" : " >=16.8" ,
32
+ "react-native" : " >=0.44"
33
+ }
34
34
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-router" ,
3
3
"version" : " 6.4.0-pre.2" ,
4
- "author" :
" Remix Software <[email protected] >" ,
5
4
"description" : " Declarative routing for React" ,
5
+ "keywords" : [
6
+ " react" ,
7
+ " router" ,
8
+ " route" ,
9
+ " routing" ,
10
+ " history" ,
11
+ " link"
12
+ ],
6
13
"repository" : {
7
14
"type" : " git" ,
8
- "url" : " https://github.com/remix-run/react-router.git " ,
15
+ "url" : " https://github.com/remix-run/react-router" ,
9
16
"directory" : " packages/react-router"
10
17
},
11
18
"license" : " MIT" ,
19
+ "author" :
" Remix Software <[email protected] >" ,
20
+ "sideEffects" : false ,
12
21
"main" : " ./main.js" ,
22
+ "unpkg" : " ./umd/react-router.production.min.js" ,
13
23
"module" : " ./index.js" ,
14
24
"types" : " ./index.d.ts" ,
15
- "unpkg" : " ./umd/react-router.production.min.js" ,
16
- "peerDependencies" : {
17
- "react" : " >=16.8"
18
- },
19
25
"dependencies" : {
20
26
"@remix-run/router" : " 0.1.0"
21
27
},
22
- "sideEffects" : false ,
23
- "keywords" : [
24
- " react" ,
25
- " router" ,
26
- " route" ,
27
- " routing" ,
28
- " history" ,
29
- " link"
30
- ]
28
+ "peerDependencies" : {
29
+ "react" : " >=16.8"
30
+ }
31
31
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @remix-run/router" ,
3
3
"version" : " 0.1.0" ,
4
- "author" :
" Remix Software <[email protected] >" ,
5
4
"description" : " Nested/Data-driven/Framework-agnostic Routing" ,
5
+ "keywords" : [
6
+ " remix" ,
7
+ " router" ,
8
+ " location"
9
+ ],
6
10
"repository" : {
7
11
"type" : " git" ,
8
- "url" : " https://github.com/remix-run/react-router.git " ,
12
+ "url" : " https://github.com/remix-run/react-router" ,
9
13
"directory" : " packages/router"
10
14
},
11
15
"license" : " MIT" ,
16
+ "author" :
" Remix Software <[email protected] >" ,
17
+ "sideEffects" : false ,
12
18
"main" : " ./main.js" ,
13
- "module" : " ./index.js" ,
14
- "types" : " ./index.d.ts" ,
15
19
"unpkg" : " ./umd/router.production.min.js" ,
16
- "sideEffects" : false ,
17
- "keywords" : [
18
- " remix" ,
19
- " router" ,
20
- " location"
21
- ]
20
+ "module" : " ./index.js" ,
21
+ "types" : " ./index.d.ts"
22
22
}
You can’t perform that action at this time.
0 commit comments