-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 4.08 KB
/
package.json
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@humanspeak/svelte-virtual-list",
"version": "0.2.2",
"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.",
"type": "module",
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run package",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest run --coverage",
"test:only": "vitest run",
"test:watch": "vitest",
"lint": "prettier --check . && eslint .",
"lint:fix": "npm run format && eslint . --fix",
"format": "prettier --write .",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report"
},
"dependencies": {
"esm-env": "^1.2.2"
},
"peerDependencies": {
"svelte": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@playwright/test": "^1.49.1",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/kit": "^2.15.2",
"@sveltejs/package": "^2.3.7",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/svelte": "^5.2.6",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"@vitest/coverage-v8": "^3.0.0-beta.4",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.14.0",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-svelte": "^3.3.2",
"publint": "^0.3.0",
"svelte": "^5.17.3",
"svelte-check": "^4.1.3",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vitest": "^3.0.0-beta.4"
},
"keywords": [
"svelte",
"virtual-list",
"virtual-scroll",
"infinite-scroll",
"performance",
"ui-component",
"svelte5",
"dom-recycling",
"large-lists",
"scroll-optimization"
],
"tags": [
"svelte",
"virtual-list",
"virtual-scroll",
"virtual-scroller",
"infinite-scroll",
"performance",
"ui-component",
"svelte5"
],
"author": "Humanspeak, Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/humanspeak/svelte-virtual-list.git"
},
"homepage": "https://virtuallist.svelte.page",
"bugs": {
"url": "https://github.com/humanspeak/svelte-virtual-list/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/humanspeak"
},
"publishConfig": {
"access": "public"
},
"overrides": {
"@sveltejs/kit": {
"cookie": "^0.7.0"
},
"jsdom": {
"cssstyle": "2.3.0",
"@asamuzakjp/css-color": "1.0.0"
}
},
"volta": {
"node": "22.12.0"
}
}