-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.42 KB
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
{
"name": "svelte-intersection-observer",
"version": "2.2.0",
"license": "MIT",
"description": "Detects when an element enters or exits the viewport using the Intersection Observer API.",
"author": "Eric Liu (https://github.com/metonym)",
"type": "module",
"svelte": "./src/index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"package": "bun scripts/npm-package.ts",
"test:types": "svelte-check --workspace tests",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"lint": "biome check --write .",
"lint:changed": "biome check --write --changed --since=master --no-errors-on-unmatched ."
},
"devDependencies": {
"@biomejs/biome": "2.5.4",
"@playwright/test": "^1.61.1",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@types/bun": "^1.3.14",
"jsdom": "^29.1.1",
"svelte": "5.56.4",
"svelte-check": "^4.7.1",
"svelte-readme": "^4.5.2",
"typescript": "^6.0.3",
"vite": "^8.1.3",
"vitest": "^4.1.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metonym/svelte-intersection-observer.git"
},
"homepage": "https://metonym.github.io/svelte-intersection-observer/",
"bugs": "https://github.com/metonym/svelte-intersection-observer/issues",
"keywords": [
"svelte",
"svelte component",
"intersection observer",
"viewport",
"lazy-loading",
"conditional"
]
}