-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "@oliverjam/eleventy-plugin-svelte",
"version": "2.0.1",
"description": "Use Svelte components as Eleventy templates",
"main": ".eleventy.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "ELEVENTY_EXPERIMENTAL=true eleventy --input=example --serve",
"test": "uvu tests"
},
"keywords": [
"eleventy",
"eleventy-plugin",
"svelte"
],
"author": "Oliver Phillips <hello@oliverjam.es> (https://oliverjam.es)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/oliverjam/eleventy-plugin-svelte.git"
},
"bugs": {
"url": "https://github.com/oliverjam/eleventy-plugin-svelte/issues"
},
"homepage": "https://github.com/oliverjam/eleventy-plugin-svelte#readme",
"dependencies": {
"svelte": "^3.24.1"
},
"peerDependencies": {
"@11ty/eleventy": ">=0.11.0"
},
"devDependencies": {
"@11ty/eleventy": "^0.11.0",
"uvu": "^0.3.3"
},
"prettier": {
"svelteSortOrder": "scripts-markup-styles"
}
}