-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
51 lines (51 loc) · 1.18 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
{
"name": "svelte-lazy",
"svelte": "src/index.svelte",
"exports": {
".": {
"svelte": "./src/index.svelte"
}
},
"module": "index.mjs",
"main": "index.js",
"version": "1.2.11",
"types": "index.d.ts",
"repository": "leafOfTree/svelte-lazy",
"license": "UNLICENSE",
"scripts": {
"start": "rollup -c ./test/rollup.config.js -w",
"test": "npm run test-build && npm run test-run",
"test-run": "node test/auto/run",
"test-build": "rollup -c ./test/auto/rollup.config.js",
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"puppeteer": "^23.4.0",
"rollup": "^4.22.4",
"rollup-plugin-css-only": "^4.5.2",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-serve": "^1.0.3",
"rollup-plugin-svelte": "^7.2.2",
"svelte": "^4.2.19",
"express": "^4.21.1"
},
"peerDependencies": {
"svelte": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"keywords": [
"svelte",
"lazyload",
"lazy"
],
"files": [
"src",
"index.mjs",
"index.js",
"index.d.ts"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}