-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
57 lines (57 loc) · 1.25 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
{
"name": "@nuxtjs/web-vitals",
"version": "0.2.7",
"description": "Web Vitals for Nuxt.js",
"keywords": [
"nuxt",
"performance",
"metrics",
"vitals",
"web-vitals",
"webvitals",
"cls",
"fcp",
"fid",
"lcp",
"ttfb",
"inp"
],
"repository": "nuxt-modules/web-vitals",
"license": "MIT",
"exports": {
".": "./dist/module.mjs",
"./*": "./*"
},
"main": "./dist/module.cjs",
"types": "./dist/module.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "nuxt build-module",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"dev": "nuxt dev playground",
"dev:build": "nuxt build playground",
"lint": "eslint .",
"release": "pnpm test && pnpm build && standard-version && npm publish && git push --follow-tags",
"test": "pnpm lint"
},
"dependencies": {
"@nuxt/kit": "^3.11.2",
"defu": "^6.1.4",
"pathe": "^1.1.2",
"ufo": "^1.5.3",
"web-vitals": "^3.5.2"
},
"devDependencies": {
"@nuxt/module-builder": "^0.5.5",
"eslint": "^9.1.1",
"nuxt": "^3.11.2",
"standard-version": "^9.5.0",
"typescript": "^5.4.5",
"@nuxt/eslint-config": "^0.3.9"
},
"resolutions": {
"@nuxtjs/web-vitals": "link:."
}
}