-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "rollup-plugin-express-svelte",
"version": "1.0.0",
"description": "A rollup plugin to bundle and wrap views with complete or partial hydration support from express-svelte package.",
"keywords": [
"rollup",
"rollup-plugin",
"express-svelte",
"hydration",
"partial-hydration"
],
"main": "dist/rollup-plugin-express-svelte.cjs.js",
"module": "dist/rollup-plugin-express-svelte.es.js",
"browser": "src/components/ViewGlobals.svelte",
"scripts": {
"build": "rollup -c",
"prebuild": "del-cli dist",
"prepublishOnly": "npm run test",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxiruani/rollup-plugin-express-svelte.git"
},
"author": "Maximiliano Ruani",
"license": "MIT",
"bugs": {
"url": "https://github.com/maxiruani/rollup-plugin-express-svelte/issues"
},
"homepage": "https://github.com/maxiruani/rollup-plugin-express-svelte#readme",
"dependencies": {
"fast-glob": "^3.2.4",
"fs-extra": "^9.0.1",
"lodash": "^4.17.20"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"del-cli": "^3.0.1",
"rollup": "^2.32.1",
"svelte": "^3.24.1"
},
"peerDependencies": {
"rollup": "^2.0.0",
"svelte": "^3.24.1"
}
}