-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.08 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
{
"name": "priority-hints-codemod",
"version": "1.0.0",
"description": "A dependency-free codemod that applies resource-priority best practices (fetchpriority, lazy loading, decoding, preload/preconnect) to HTML, Next.js, Nuxt/Vue and Astro templates.",
"keywords": [
"codemod",
"fetchpriority",
"priority-hints",
"lcp",
"core-web-vitals",
"performance",
"lazy-loading",
"preload",
"preconnect",
"nextjs",
"nuxt",
"astro",
"html",
"web-performance"
],
"license": "MIT",
"author": "Network Priority",
"homepage": "https://www.network-priority.com",
"repository": {
"type": "git",
"url": "https://github.com/network-priority/priority-hints-codemod"
},
"bugs": {
"url": "https://github.com/network-priority/priority-hints-codemod/issues"
},
"type": "commonjs",
"engines": {
"node": ">=18"
},
"bin": {
"priority-hints-codemod": "bin/priority-hints-codemod"
},
"files": [
"bin",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test"
},
"dependencies": {}
}