-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
48 lines (48 loc) · 1.39 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
{
"name": "svelte-intersection-observer",
"version": "1.0.0",
"license": "MIT",
"description": "Detect if an element is in the viewport using the Intersection Observer API",
"author": "Eric Liu (https://github.com/metonym)",
"type": "module",
"svelte": "./src/index.js",
"scripts": {
"dev": "bun --bun rollup -cw",
"build": "bun --bun rollup -c",
"package": "bun scripts/npm-package.ts",
"test:types": "bun --bun svelte-check --workspace tests",
"test:e2e": "playwright test",
"format": "bun --bun prettier --write . --cache"
},
"devDependencies": {
"@playwright/experimental-ct-svelte": "1.47.1",
"@playwright/test": "1.47.1",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@types/bun": "^1.1.9",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"svelte": "3.59.2",
"svelte-check": "^3.8.6",
"svelte-readme": "^3.6.3",
"typescript": "^5.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metonym/svelte-intersection-observer.git"
},
"homepage": "https://github.com/metonym/svelte-intersection-observer",
"bugs": "https://github.com/metonym/svelte-intersection-observer/issues",
"keywords": [
"svelte",
"svelte component",
"intersection observer",
"viewport",
"lazy-loading",
"conditional"
],
"prettier": {
"plugins": [
"prettier-plugin-svelte"
]
}
}