-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.83 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
{
"name": "sveltekit-lazyload-iframe",
"version": "0.0.1",
"license": "BSD-3-Clause",
"description": "Lazy loading iframes in SvelteKit: we see how Core Web Vitals from Google make optimising your Svelte site important to rank.",
"scripts": {
"dev": "vite dev",
"start": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check",
"lint": "prettier --check --plugin=prettier-plugin-svelte . && eslint .",
"lint:scss": "stylelint 'src/**/*.{css,scss,svelte}'",
"format": "prettier --write --plugin=prettier-plugin-svelte .",
"prettier:check": "prettier --check --plugin=prettier-plugin-svelte ."
},
"devDependencies": {
"@commitlint/config-conventional": "^19.7.1",
"@eslint/js": "^9.21.0",
"@fontsource/source-sans-pro": "^5.1.0",
"@sveltejs/kit": "^2.17.3",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"commitlint": "^19.7.1",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-svelte": "^3.0.2",
"globals": "^16.0.0",
"husky": "^9.1.7",
"postcss": "^8.5.3",
"postcss-html": "^1.8.0",
"prettier": "~3.5.2",
"prettier-plugin-svelte": "^3.3.3",
"sass-embedded": "^1.85.1",
"stylelint": "^16.14.1",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-scss": "^6.11.1",
"svelte": "^5.20.4",
"svelte-check": "^4.1.4",
"svelte-preprocess": "^6.0.3",
"typescript-eslint": "^8.25.0",
"vanilla-lazyload": "^19.1.3",
"vite": "^6.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rodneylab/sveltekit-lazyload-iframe"
},
"bugs": {
"url": "https://github.com/rodneylab/sveltekit-lazyload-iframe/issues"
},
"type": "module",
"dependencies": {
"@sveltejs/vite-plugin-svelte": "^5.0.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"svelte-preprocess"
]
}
}