File tree Expand file tree Collapse file tree 24 files changed +300
-0
lines changed Expand file tree Collapse file tree 24 files changed +300
-0
lines changed Original file line number Diff line number Diff line change 18
18
"main" : " build/npm/cjs/index.js" ,
19
19
"module" : " build/npm/esm/index.js" ,
20
20
"types" : " build/npm/types/index.d.ts" ,
21
+ "exports" : {
22
+ "./package.json" : " ./package.json" ,
23
+ "." : {
24
+ "import" : {
25
+ "types" : " ./build/npm/types/index.d.ts" ,
26
+ "default" : " ./build/npm/esm/index.js"
27
+ },
28
+ "require" : {
29
+ "types" : " ./build/npm.types/index.d.ts" ,
30
+ "default" : " ./build/npm/cjs/index.js"
31
+ }
32
+ }
33
+ },
21
34
"typesVersions" : {
22
35
"<4.9" : {
23
36
"build/npm/types/index.d.ts" : [
Original file line number Diff line number Diff line change 18
18
"main" : " build/esm/index.js" ,
19
19
"module" : " build/esm/index.js" ,
20
20
"types" : " build/types/index.d.ts" ,
21
+ "exports" : {
22
+ "./package.json" : " ./package.json" ,
23
+ "." : {
24
+ "import" : {
25
+ "types" : " ./build/types/index.d.ts" ,
26
+ "default" : " ./build/esm/index.js"
27
+ },
28
+ "require" : {
29
+ "types" : " ./build/types/index.d.ts" ,
30
+ "default" : " ./build/cjs/index.js"
31
+ }
32
+ }
33
+ },
21
34
"typesVersions" : {
22
35
"<4.9" : {
23
36
"build/npm/types/index.d.ts" : [
Original file line number Diff line number Diff line change 18
18
"main" : " build/cjs/index.js" ,
19
19
"module" : " build/esm/index.js" ,
20
20
"types" : " build/types/index.d.ts" ,
21
+ "exports" : {
22
+ "./package.json" : " ./package.json" ,
23
+ "." : {
24
+ "import" : {
25
+ "types" : " ./build/types/index.d.ts" ,
26
+ "default" : " ./build/esm/index.js"
27
+ },
28
+ "require" : {
29
+ "types" : " ./build/types/index.d.ts" ,
30
+ "default" : " ./build/cjs/index.js"
31
+ }
32
+ }
33
+ },
21
34
"typesVersions" : {
22
35
"<4.9" : {
23
36
"build/types/index.d.ts" : [
Original file line number Diff line number Diff line change 8
8
"license" : " MIT" ,
9
9
"module" : " build/index.mjs" ,
10
10
"types" : " build/index.d.ts" ,
11
+ "exports" : {
12
+ "./package.json" : " ./package.json" ,
13
+ "." : {
14
+ "import" : {
15
+ "types" : " ./build/index.d.ts" ,
16
+ "default" : " ./build/index.mjs"
17
+ }
18
+ }
19
+ },
11
20
"publishConfig" : {
12
21
"access" : " public"
13
22
},
Original file line number Diff line number Diff line change 18
18
"main" : " build/npm/cjs/index.js" ,
19
19
"module" : " build/npm/esm/index.js" ,
20
20
"types" : " build/npm/types/index.d.ts" ,
21
+ "exports" : {
22
+ "./package.json" : " ./package.json" ,
23
+ "." : {
24
+ "import" : {
25
+ "types" : " ./build/npm/types/index.d.ts" ,
26
+ "default" : " ./build/npm/esm/index.js"
27
+ },
28
+ "require" : {
29
+ "types" : " ./build/npm/types/index.d.ts" ,
30
+ "default" : " ./build/npm/cjs/index.js"
31
+ }
32
+ }
33
+ },
21
34
"typesVersions" : {
22
35
"<4.9" : {
23
36
"build/npm/types/index.d.ts" : [
Original file line number Diff line number Diff line change 26
26
"main" : " build/cjs/index.js" ,
27
27
"module" : " build/esm/index.js" ,
28
28
"types" : " build/types/index.d.ts" ,
29
+ "exports" : {
30
+ "./package.json" : " ./package.json" ,
31
+ "." : {
32
+ "import" : {
33
+ "types" : " ./build/types/index.d.ts" ,
34
+ "default" : " ./build/esm/index.js"
35
+ },
36
+ "require" : {
37
+ "types" : " ./build/types/index.d.ts" ,
38
+ "default" : " ./build/cjs/index.js"
39
+ }
40
+ }
41
+ },
29
42
"typesVersions" : {
30
43
"<4.9" : {
31
44
"build/types/index.d.ts" : [
Original file line number Diff line number Diff line change 5
5
"main" : " build/cjs/index.js" ,
6
6
"module" : " build/esm/index.js" ,
7
7
"types" : " build/types/index.d.ts" ,
8
+ "exports" : {
9
+ "./package.json" : " ./package.json" ,
10
+ "." : {
11
+ "import" : {
12
+ "types" : " ./build/types/index.d.ts" ,
13
+ "default" : " ./build/esm/index.js"
14
+ },
15
+ "require" : {
16
+ "types" : " ./build/types/index.d.ts" ,
17
+ "default" : " ./build/cjs/index.js"
18
+ }
19
+ }
20
+ },
8
21
"typesVersions" : {
9
22
"<4.9" : {
10
23
"build/types/index.d.ts" : [
Original file line number Diff line number Diff line change 13
13
"module" : " build/esm/index.server.js" ,
14
14
"browser" : " build/esm/index.client.js" ,
15
15
"types" : " build/types/index.types.d.ts" ,
16
+ "exports" : {
17
+ "./package.json" : " ./package.json" ,
18
+ "." : {
19
+ "browser" : {
20
+ "import" : " ./build/esm/index.client.js" ,
21
+ "require" : " ./build/cjs/index.client.js"
22
+ },
23
+ "node" : " ./build/cjs/index.server.js" ,
24
+ "types" : " ./build/types/index.types.d.ts"
25
+ }
26
+ },
16
27
"typesVersions" : {
17
28
"<4.9" : {
18
29
"build/npm/types/index.d.ts" : [
Original file line number Diff line number Diff line change 18
18
"main" : " build/cjs/index.js" ,
19
19
"module" : " build/esm/index.js" ,
20
20
"types" : " build/types/index.d.ts" ,
21
+ "exports" : {
22
+ "./package.json" : " ./package.json" ,
23
+ "." : {
24
+ "import" : {
25
+ "types" : " ./build/types/index.d.ts" ,
26
+ "default" : " ./build/esm/index.js"
27
+ },
28
+ "require" : {
29
+ "types" : " ./build/types/index.d.ts" ,
30
+ "default" : " ./build/cjs/index.js"
31
+ }
32
+ }
33
+ },
21
34
"typesVersions" : {
22
35
"<4.9" : {
23
36
"build/types/index.d.ts" : [
Original file line number Diff line number Diff line change 18
18
"main" : " build/cjs/index.js" ,
19
19
"module" : " build/esm/index.js" ,
20
20
"types" : " build/types/index.d.ts" ,
21
+ "exports" : {
22
+ "./package.json" : " ./package.json" ,
23
+ "." : {
24
+ "import" : {
25
+ "types" : " ./build/types/index.d.ts" ,
26
+ "default" : " ./build/esm/index.js"
27
+ },
28
+ "require" : {
29
+ "types" : " ./build/types/index.d.ts" ,
30
+ "default" : " ./build/cjs/index.js"
31
+ }
32
+ }
33
+ },
21
34
"typesVersions" : {
22
35
"<4.9" : {
23
36
"build/types/index.d.ts" : [
Original file line number Diff line number Diff line change 18
18
"main" : " build/cjs/index.js" ,
19
19
"module" : " build/esm/index.js" ,
20
20
"types" : " build/types/index.d.ts" ,
21
+ "exports" : {
22
+ "./package.json" : " ./package.json" ,
23
+ "." : {
24
+ "import" : {
25
+ "types" : " ./build/types/index.d.ts" ,
26
+ "default" : " ./build/esm/index.js"
27
+ },
28
+ "require" : {
29
+ "types" : " ./build/types/index.d.ts" ,
30
+ "default" : " ./build/cjs/index.js"
31
+ }
32
+ }
33
+ },
21
34
"typesVersions" : {
22
35
"<4.9" : {
23
36
"build/types/index.d.ts" : [
Original file line number Diff line number Diff line change 8
8
"license" : " MIT" ,
9
9
"main" : " lib/index.js" ,
10
10
"types" : " lib/types/index.d.ts" ,
11
+ "exports" : {
12
+ "./package.json" : " ./package.json" ,
13
+ "." : {
14
+ "require" : {
15
+ "types" : " ./lib/types/index.d.ts" ,
16
+ "default" : " ./lib/index.js"
17
+ }
18
+ }
19
+ },
11
20
"typesVersions" : {
12
21
"<4.9" : {
13
22
"lib/types/index.d.ts" : [
Original file line number Diff line number Diff line change 18
18
"main" : " build/cjs/index.js" ,
19
19
"module" : " build/esm/index.js" ,
20
20
"types" : " build/types/index.d.ts" ,
21
+ "exports" : {
22
+ "./package.json" : " ./package.json" ,
23
+ "." : {
24
+ "import" : {
25
+ "types" : " ./build/types/index.d.ts" ,
26
+ "default" : " ./build/esm/index.js"
27
+ },
28
+ "require" : {
29
+ "types" : " ./build/types/index.d.ts" ,
30
+ "default" : " ./build/cjs/index.js"
31
+ }
32
+ }
33
+ },
21
34
"typesVersions" : {
22
35
"<4.9" : {
23
36
"build/types/index.d.ts" : [
Original file line number Diff line number Diff line change 23
23
"module" : " build/esm/index.server.js" ,
24
24
"browser" : " build/esm/index.client.js" ,
25
25
"types" : " build/types/index.types.d.ts" ,
26
+ "exports" : {
27
+ "./package.json" : " ./package.json" ,
28
+ "." : {
29
+ "browser" : {
30
+ "import" : " ./build/esm/index.client.js" ,
31
+ "require" : " ./build/cjs/index.client.js"
32
+ },
33
+ "node" : " ./build/cjs/index.server.js" ,
34
+ "types" : " ./build/types/index.types.d.ts"
35
+ }
36
+ },
26
37
"typesVersions" : {
27
38
"<4.9" : {
28
39
"build/types/index.d.ts" : [
Original file line number Diff line number Diff line change 5
5
"main" : " build/npm/cjs/index.js" ,
6
6
"module" : " build/npm/esm/index.js" ,
7
7
"types" : " build/npm/types/index.d.ts" ,
8
+ "exports" : {
9
+ "./package.json" : " ./package.json" ,
10
+ "." : {
11
+ "import" : {
12
+ "types" : " ./build/npm/types/index.d.ts" ,
13
+ "default" : " ./build/npm/esm/index.js"
14
+ },
15
+ "require" : {
16
+ "types" : " ./build/npm/types/index.d.ts" ,
17
+ "default" : " ./build/npm/cjs/index.js"
18
+ }
19
+ }
20
+ },
8
21
"typesVersions" : {
9
22
"<4.9" : {
10
23
"build/npm/types/index.d.ts" : [
Original file line number Diff line number Diff line change 5
5
"main" : " build/npm/cjs/index.js" ,
6
6
"module" : " build/npm/esm/index.js" ,
7
7
"types" : " build/npm/types/index.d.ts" ,
8
+ "exports" : {
9
+ "./package.json" : " ./package.json" ,
10
+ "." : {
11
+ "import" : {
12
+ "types" : " ./build/npm/types/index.d.ts" ,
13
+ "default" : " ./build/npm/esm/index.js"
14
+ },
15
+ "require" : {
16
+ "types" : " ./build/npm/types/index.d.ts" ,
17
+ "default" : " ./build/npm/cjs/index.js"
18
+ }
19
+ }
20
+ },
8
21
"typesVersions" : {
9
22
"<4.9" : {
10
23
"build/npm/types/index.d.ts" : [
Original file line number Diff line number Diff line change 18
18
"main" : " build/npm/cjs/index.js" ,
19
19
"module" : " build/npm/esm/index.js" ,
20
20
"types" : " build/npm/types/index.d.ts" ,
21
+ "exports" : {
22
+ "./package.json" : " ./package.json" ,
23
+ "." : {
24
+ "import" : {
25
+ "types" : " ./build/npm/types/index.d.ts" ,
26
+ "default" : " ./build/npm/esm/index.js"
27
+ },
28
+ "require" : {
29
+ "types" : " ./build/npm/types/index.d.ts" ,
30
+ "default" : " ./build/npm/cjs/index.js"
31
+ }
32
+ }
33
+ },
21
34
"typesVersions" : {
22
35
"<4.9" : {
23
36
"build/npm/types/index.d.ts" : [
Original file line number Diff line number Diff line change 18
18
"main" : " build/cjs/index.js" ,
19
19
"module" : " build/esm/index.js" ,
20
20
"types" : " build/types/index.d.ts" ,
21
+ "exports" : {
22
+ "./package.json" : " ./package.json" ,
23
+ "." : {
24
+ "import" : {
25
+ "types" : " ./build/types/index.d.ts" ,
26
+ "default" : " ./build/esm/index.js"
27
+ },
28
+ "require" : {
29
+ "types" : " ./build/types/index.d.ts" ,
30
+ "default" : " ./build/cjs/index.js"
31
+ }
32
+ }
33
+ },
21
34
"typesVersions" : {
22
35
"<4.9" : {
23
36
"build/types/index.d.ts" : [
Original file line number Diff line number Diff line change 18
18
"main" : " build/cjs/index.js" ,
19
19
"module" : " build/esm/index.js" ,
20
20
"types" : " build/types/index.d.ts" ,
21
+ "exports" : {
22
+ "./package.json" : " ./package.json" ,
23
+ "." : {
24
+ "import" : {
25
+ "types" : " ./build/types/index.d.ts" ,
26
+ "default" : " ./build/esm/index.js"
27
+ },
28
+ "require" : {
29
+ "types" : " ./build/types/index.d.ts" ,
30
+ "default" : " ./build/cjs/index.js"
31
+ }
32
+ }
33
+ },
21
34
"typesVersions" : {
22
35
"<4.9" : {
23
36
"build/types/index.d.ts" : [
Original file line number Diff line number Diff line change 18
18
"main" : " build/cjs/index.js" ,
19
19
"module" : " build/esm/index.js" ,
20
20
"types" : " build/types/index.d.ts" ,
21
+ "exports" : {
22
+ "./package.json" : " ./package.json" ,
23
+ "." : {
24
+ "import" : {
25
+ "types" : " ./build/types/index.d.ts" ,
26
+ "default" : " ./build/esm/index.js"
27
+ },
28
+ "require" : {
29
+ "types" : " ./build/types/index.d.ts" ,
30
+ "default" : " ./build/cjs/index.js"
31
+ }
32
+ }
33
+ },
21
34
"typesVersions" : {
22
35
"<4.9" : {
23
36
"build/types/index.d.ts" : [
You can’t perform that action at this time.
0 commit comments