-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "eleventy-plugin-svelte",
"version": "1.1.0",
"description": "Use Svelte components in Eleventy.",
"main": ".eleventy.js",
"scripts": {
"dev": "cd example && env ELEVENTY_EXPERIMENTAL=true NODE_ENV=development npx @11ty/eleventy --serve",
"build": "cd example && env ELEVENTY_EXPERIMENTAL=true npx @11ty/eleventy"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gobeli/eleventy-plugin-svelte.git"
},
"keywords": [
"eleventy",
"eleventy-plugin",
"svelte"
],
"author": {
"name": "Etienne Gobeli"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/gobeli/eleventy-plugin-svelte/issues"
},
"homepage": "https://github.com/gobeli/eleventy-plugin-svelte#readme",
"dependencies": {
"@rollup/plugin-node-resolve": "^10.0.0",
"globby": "^11.0.1",
"rollup": "^2.33.3",
"svelte": "^3.30.0"
},
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.2"
}
}