-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
67 lines (67 loc) · 1.49 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
64
65
66
67
{
"name": "@11ty/eleventy-plugin-vite",
"version": "5.0.2",
"description": "A plugin to use Vite as a development server and run Vite to postprocess your Eleventy build.",
"license": "MIT",
"engines": {
"node": ">=18"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
"keywords": [
"eleventy",
"server"
],
"11ty": {
"compatibility": ">=3.0.0"
},
"publishConfig": {
"access": "public"
},
"contributors": [
{
"name": "Zach Leatherman",
"email": "zachleatherman@gmail.com",
"url": "https://zachleat.com/"
},
{
"name": "Kilian Finger",
"email": "npm@kilianfinger.com",
"url": "https://www.kilianfinger.com/"
}
],
"repository": {
"type": "git",
"url": "git://github.com/11ty/eleventy-plugin-vite.git"
},
"bugs": "https://github.com/11ty/eleventy-plugin-vite/issues",
"homepage": "https://github.com/11ty/eleventy-plugin-vite/",
"main": "./.eleventy.js",
"type": "module",
"exports": {
".": "./.eleventy.js",
"./EleventyVite": "./EleventyVite.js",
"./package.json": "./package.json"
},
"files": [
".eleventy.js",
"EleventyVite.js"
],
"scripts": {
"format": "prettier . --write",
"example": "cd example && eleventy",
"example:start": "npm run example -- --serve",
"example:build": "npm run example",
"example:clean": "rimraf ./example/_site"
},
"dependencies": {
"@11ty/eleventy-utils": "^1.0.3",
"vite": "^5.4.8"
},
"devDependencies": {
"@11ty/eleventy": "3.0.0",
"prettier": "3.3.3"
}
}