-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.35 KB
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
{
"name": "eleventy-plugin-speculation-rules",
"version": "2.0.0",
"description": "Eleventy plugin to add speculation rules to your build process",
"type": "module",
"main": ".eleventy.cjs",
"module": ".eleventy.js",
"exports": {
".": {
"import": "./.eleventy.js",
"require": "./.eleventy.cjs"
}
},
"scripts": {
"build": "npx eleventy --config=./demo/.eleventy.js --input=./demo --output=./_site",
"dev": "npx eleventy --serve --config=./demo/.eleventy.js --input=./demo --output=./_site",
"test": "npx eleventy --config=./demo/.eleventy.js --input=./demo --output=./_site"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/reatlat/eleventy-plugin-speculation-rules.git"
},
"keywords": [
"eleventy",
"eleventy-plugin",
"11ty",
"speculation-rules",
"speculation",
"performance",
"optimization"
],
"author": {
"name": "Alex Zappa",
"email": "alex@zappa.dev",
"url": "https://alex.zappa.dev/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/reatlat/eleventy-plugin-speculation-rules/issues"
},
"homepage": "https://eleventy-plugin-speculation-rules.netlify.app",
"peerDependencies": {
"@11ty/eleventy": ">=2.0.0"
},
"dependencies": {
"linkedom": "^0.18.9"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.2"
}
}