@humanspeak/svelte-virtual-list 0.2.3 → 0.2.4
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/README.md +2 -2
- package/package.json +14 -17
- /package/{LICENSE.md → LICENSE} +0 -0
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/@humanspeak/svelte-virtual-list)
|
|
4
4
|
[](https://github.com/humanspeak/svelte-virtual-list/actions/workflows/npm-publish.yml)
|
|
5
5
|
[](https://coveralls.io/github/humanspeak/svelte-virtual-list?branch=main)
|
|
6
|
-
[](https://github.com/humanspeak/svelte-virtual-list/blob/main/LICENSE
|
|
6
|
+
[](https://github.com/humanspeak/svelte-virtual-list/blob/main/LICENSE)
|
|
7
7
|
[](https://www.npmjs.com/package/@humanspeak/svelte-virtual-list)
|
|
8
8
|
[](https://github.com/humanspeak/svelte-virtual-list/actions/workflows/codeql.yml)
|
|
9
9
|
[](https://trunk.io)
|
|
@@ -112,7 +112,7 @@ npm install @humanspeak/svelte-virtual-list
|
|
|
112
112
|
|
|
113
113
|
## License
|
|
114
114
|
|
|
115
|
-
MIT © [Humanspeak, Inc.](LICENSE
|
|
115
|
+
MIT © [Humanspeak, Inc.](LICENSE)
|
|
116
116
|
|
|
117
117
|
## Credits
|
|
118
118
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@humanspeak/svelte-virtual-list",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "A lightweight, high-performance virtual list component for Svelte 5 that renders large datasets with minimal memory usage. Features include dynamic height support, smooth scrolling, TypeScript support, and efficient DOM recycling. Ideal for infinite scrolling lists, data tables, chat interfaces, and any application requiring the rendering of thousands of items without compromising performance. Zero dependencies and fully customizable.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"svelte",
|
|
@@ -57,6 +57,7 @@
|
|
|
57
57
|
"prepublishOnly": "npm run package",
|
|
58
58
|
"preview": "vite preview",
|
|
59
59
|
"test": "vitest run --coverage",
|
|
60
|
+
"test:all": "npm run test && npm run test:e2e",
|
|
60
61
|
"test:e2e": "playwright test",
|
|
61
62
|
"test:e2e:debug": "playwright test --debug",
|
|
62
63
|
"test:e2e:report": "playwright show-report",
|
|
@@ -70,17 +71,17 @@
|
|
|
70
71
|
"devDependencies": {
|
|
71
72
|
"@eslint/js": "^9.18.0",
|
|
72
73
|
"@playwright/test": "^1.49.1",
|
|
73
|
-
"@sveltejs/adapter-auto": "^
|
|
74
|
-
"@sveltejs/kit": "^2.
|
|
75
|
-
"@sveltejs/package": "^2.3.
|
|
74
|
+
"@sveltejs/adapter-auto": "^4.0.0",
|
|
75
|
+
"@sveltejs/kit": "^2.16.1",
|
|
76
|
+
"@sveltejs/package": "^2.3.8",
|
|
76
77
|
"@sveltejs/vite-plugin-svelte": "^5.0.3",
|
|
77
78
|
"@testing-library/jest-dom": "^6.6.3",
|
|
78
79
|
"@testing-library/svelte": "^5.2.6",
|
|
79
|
-
"@testing-library/user-event": "^14.
|
|
80
|
-
"@types/node": "^22.10.
|
|
81
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
82
|
-
"@typescript-eslint/parser": "^8.
|
|
83
|
-
"@vitest/coverage-v8": "^3.0.
|
|
80
|
+
"@testing-library/user-event": "^14.6.0",
|
|
81
|
+
"@types/node": "^22.10.7",
|
|
82
|
+
"@typescript-eslint/eslint-plugin": "^8.21.0",
|
|
83
|
+
"@typescript-eslint/parser": "^8.21.0",
|
|
84
|
+
"@vitest/coverage-v8": "^3.0.3",
|
|
84
85
|
"eslint": "^9.18.0",
|
|
85
86
|
"eslint-config-prettier": "^10.0.1",
|
|
86
87
|
"eslint-plugin-svelte": "^2.46.1",
|
|
@@ -90,17 +91,17 @@
|
|
|
90
91
|
"prettier-plugin-organize-imports": "^4.1.0",
|
|
91
92
|
"prettier-plugin-svelte": "^3.3.3",
|
|
92
93
|
"publint": "^0.3.2",
|
|
93
|
-
"svelte": "^5.
|
|
94
|
+
"svelte": "^5.19.1",
|
|
94
95
|
"svelte-check": "^4.1.4",
|
|
95
96
|
"typescript": "^5.7.3",
|
|
96
|
-
"vite": "^6.0.
|
|
97
|
-
"vitest": "^3.0.
|
|
97
|
+
"vite": "^6.0.11",
|
|
98
|
+
"vitest": "^3.0.3"
|
|
98
99
|
},
|
|
99
100
|
"peerDependencies": {
|
|
100
101
|
"svelte": "^5.0.0"
|
|
101
102
|
},
|
|
102
103
|
"volta": {
|
|
103
|
-
"node": "22.
|
|
104
|
+
"node": "22.13.0"
|
|
104
105
|
},
|
|
105
106
|
"publishConfig": {
|
|
106
107
|
"access": "public"
|
|
@@ -108,10 +109,6 @@
|
|
|
108
109
|
"overrides": {
|
|
109
110
|
"@sveltejs/kit": {
|
|
110
111
|
"cookie": "^0.7.0"
|
|
111
|
-
},
|
|
112
|
-
"jsdom": {
|
|
113
|
-
"cssstyle": "2.3.0",
|
|
114
|
-
"@asamuzakjp/css-color": "1.0.0"
|
|
115
112
|
}
|
|
116
113
|
},
|
|
117
114
|
"tags": [
|
/package/{LICENSE.md → LICENSE}
RENAMED
|
File without changes
|