-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
64 lines (64 loc) · 1.87 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
{
"name": "nuxt-delay-hydration",
"type": "module",
"version": "1.3.8",
"packageManager": "[email protected]",
"description": "Improve your Nuxt.js Google Lighthouse score by delaying hydration ⚡️",
"author": "Harlan Wilton <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/harlan-zw/nuxt-delay-hydration",
"repository": {
"type": "git",
"url": "https://github.com/harlan-zw/nuxt-delay-hydration"
},
"bugs": "https://github.com/harlan-zw/nuxt-delay-hydration/issues",
"keywords": [
"nuxt",
"nuxt-module",
"hydration",
"lighthouse",
"page speed",
"performance"
],
"exports": {
"types": "./dist/module.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"main": "./dist/module.cjs",
"types": "./dist/module.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "nuxi dev .playground",
"stub": "npx terser src/template/global.mjs -o src/runtime/template/global.mjs && npx terser src/template/replay.mjs -o src/runtime/template/replay.mjs && nuxt-module-build build --stub",
"dev:prepare": "pnpm stub",
"build": "nuxi prepare .playground && nuxt-module-build build",
"lint": "eslint . --fix",
"release": "bumpp package.json packages/*/package.json --commit --push --tag",
"test": "true"
},
"dependencies": {
"@nuxt/kit": "^3.13.1",
"lodash-es": "^4.17.21",
"packrup": "^0.1.2",
"radix3": "^1.1.2"
},
"devDependencies": {
"@antfu/eslint-config": "^3.3.2",
"@nuxt/module-builder": "^0.8.3",
"@nuxt/schema": "^3.13.1",
"@nuxt/test-utils": "^3.14.1",
"@nuxt/types": "^2.18.1",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@vitest/ui": "^2.0.5",
"bumpp": "^9.5.2",
"eslint": "^9.10.0",
"nuxt": "^3.13.1",
"typescript": "^5.5.4",
"upath": "^2.0.1",
"vitest": "^2.0.5"
}
}