@floor/vlist 0.5.3 → 0.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +31 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@floor/vlist",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.5",
|
|
4
4
|
"description": "Lightweight, high-performance virtual list with zero dependencies",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Floor IO",
|
|
@@ -30,63 +30,78 @@
|
|
|
30
30
|
"types": "./dist/index.d.ts",
|
|
31
31
|
"exports": {
|
|
32
32
|
".": {
|
|
33
|
+
"types": "./dist/index.d.ts",
|
|
33
34
|
"import": "./dist/index.js",
|
|
34
|
-
"
|
|
35
|
+
"default": "./dist/index.js"
|
|
35
36
|
},
|
|
36
37
|
"./core": {
|
|
38
|
+
"types": "./dist/core.d.ts",
|
|
37
39
|
"import": "./dist/core/index.js",
|
|
38
|
-
"
|
|
40
|
+
"default": "./dist/core/index.js"
|
|
39
41
|
},
|
|
40
42
|
"./core-light": {
|
|
43
|
+
"types": "./dist/core-light.d.ts",
|
|
41
44
|
"import": "./dist/core-light.js",
|
|
42
|
-
"
|
|
45
|
+
"default": "./dist/core-light.js"
|
|
43
46
|
},
|
|
44
47
|
"./data": {
|
|
48
|
+
"types": "./dist/plugins/data/index.d.ts",
|
|
45
49
|
"import": "./dist/data/index.js",
|
|
46
|
-
"
|
|
50
|
+
"default": "./dist/data/index.js"
|
|
47
51
|
},
|
|
48
52
|
"./compression": {
|
|
53
|
+
"types": "./dist/plugins/compression/index.d.ts",
|
|
49
54
|
"import": "./dist/compression/index.js",
|
|
50
|
-
"
|
|
55
|
+
"default": "./dist/compression/index.js"
|
|
51
56
|
},
|
|
52
57
|
"./selection": {
|
|
58
|
+
"types": "./dist/plugins/selection/index.d.ts",
|
|
53
59
|
"import": "./dist/selection/index.js",
|
|
54
|
-
"
|
|
60
|
+
"default": "./dist/selection/index.js"
|
|
55
61
|
},
|
|
56
62
|
"./scroll": {
|
|
63
|
+
"types": "./dist/plugins/scroll/index.d.ts",
|
|
57
64
|
"import": "./dist/scroll/index.js",
|
|
58
|
-
"
|
|
65
|
+
"default": "./dist/scroll/index.js"
|
|
59
66
|
},
|
|
60
67
|
"./groups": {
|
|
68
|
+
"types": "./dist/plugins/groups/index.d.ts",
|
|
61
69
|
"import": "./dist/groups/index.js",
|
|
62
|
-
"
|
|
70
|
+
"default": "./dist/groups/index.js"
|
|
63
71
|
},
|
|
64
72
|
"./grid": {
|
|
73
|
+
"types": "./dist/plugins/grid/index.d.ts",
|
|
65
74
|
"import": "./dist/grid/index.js",
|
|
66
|
-
"
|
|
75
|
+
"default": "./dist/grid/index.js"
|
|
67
76
|
},
|
|
68
77
|
"./builder": {
|
|
78
|
+
"types": "./dist/builder/index.d.ts",
|
|
69
79
|
"import": "./dist/builder/index.js",
|
|
70
|
-
"
|
|
80
|
+
"default": "./dist/builder/index.js"
|
|
71
81
|
},
|
|
72
82
|
"./snapshots": {
|
|
83
|
+
"types": "./dist/plugins/snapshots/index.d.ts",
|
|
73
84
|
"import": "./dist/snapshots/index.js",
|
|
74
|
-
"
|
|
85
|
+
"default": "./dist/snapshots/index.js"
|
|
75
86
|
},
|
|
76
87
|
"./react": {
|
|
88
|
+
"types": "./dist/adapters/react.d.ts",
|
|
77
89
|
"import": "./dist/react/index.js",
|
|
78
|
-
"
|
|
90
|
+
"default": "./dist/react/index.js"
|
|
79
91
|
},
|
|
80
92
|
"./vue": {
|
|
93
|
+
"types": "./dist/adapters/vue.d.ts",
|
|
81
94
|
"import": "./dist/vue/index.js",
|
|
82
|
-
"
|
|
95
|
+
"default": "./dist/vue/index.js"
|
|
83
96
|
},
|
|
84
97
|
"./svelte": {
|
|
98
|
+
"types": "./dist/adapters/svelte.d.ts",
|
|
85
99
|
"import": "./dist/svelte/index.js",
|
|
86
|
-
"
|
|
100
|
+
"default": "./dist/svelte/index.js"
|
|
87
101
|
},
|
|
88
102
|
"./styles": "./dist/vlist.css",
|
|
89
|
-
"./styles/extras": "./dist/vlist-extras.css"
|
|
103
|
+
"./styles/extras": "./dist/vlist-extras.css",
|
|
104
|
+
"./package.json": "./package.json"
|
|
90
105
|
},
|
|
91
106
|
"peerDependencies": {
|
|
92
107
|
"react": ">=17.0.0",
|