forked from Snugug/vite-plugin-eleventy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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": "@hamworks/vite-plugin-eleventy",
"version": "0.3.2",
"description": "A Vite plugin to build your site with 11ty",
"main": "index.js",
"scripts": {
"lint": "run-p *:lint",
"fix": "run-p *:fix",
"js:lint": "eslint .",
"js:fix": "eslint . --fix",
"prettier:lint": "prettier --check .",
"prettier:fix": "prettier --write .",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hamworks/vite-plugin-eleventy.git"
},
"keywords": [
"vite-plugin",
"eleventy"
],
"author": "Sam Richard",
"license": "MIT",
"bugs": {
"url": "https://github.com/hamworks/vite-plugin-eleventy/issues"
},
"homepage": "https://github.com/hamworks/vite-plugin-eleventy#readme",
"dependencies": {
"@11ty/eleventy": "^1.0",
"chalk": "^4.1.1"
},
"devDependencies": {
"eslint": "^7.26.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0"
},
"volta": {
"node": "14.17.0"
}
}