-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
63 lines (63 loc) · 1.47 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
63
{
"name": "@11ty/eleventy-plugin-vue",
"version": "1.0.0-canary.8",
"description": "Use Vue 3 Single File Components (SFC) in Eleventy.",
"publishConfig": {
"access": "public"
},
"main": ".eleventy.js",
"scripts": {
"test": "ava",
"testci": "ava --verbose --serial",
"sample": "npx @11ty/eleventy --input=test/sample"
},
"repository": {
"type": "git",
"url": "git+https://github.com/11ty/eleventy-plugin-vue.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
"keywords": [
"eleventy",
"eleventy-plugin"
],
"author": {
"name": "Zach Leatherman",
"email": "[email protected]",
"url": "https://zachleat.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/11ty/eleventy-plugin-vue/issues"
},
"homepage": "https://github.com/11ty/eleventy-plugin-vue#readme",
"11ty": {
"compatibility": ">=1.0.0-canary.40 || >=1.0.0-beta.1"
},
"ava": {
"failFast": false,
"files": [
"./test/*.js"
],
"ignoredByWatcher": [
"./.cache/**"
]
},
"dependencies": {
"@11ty/eleventy-assets": "^1.0.6",
"debug": "^4.3.2",
"fast-glob": "^3.2.7",
"lodash.merge": "^4.6.2",
"rollup": "^2.56.2",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-vue": "^6.0.0",
"vue": "^3.2.1",
"@vue/server-renderer": "^3.2.1"
},
"devDependencies": {
"ava": "^3.15.0",
"postcss-nested": "^5.0.6"
}
}