[READ-ONLY] Mirror of https://github.com/danielroe/nuxt-pre-hydrate.
2.2 kB
83 lines
1{
2 "name": "nuxt-pre-hydrate",
3 "version": "0.0.1",
4 "license": "MIT",
5 "description": "Safely run pre-hydration steps on the client with Nuxt 3",
6 "repository": {
7 "type": "git",
8 "url": "git+https://github.com/danielroe/nuxt-pre-hydrate.git"
9 },
10 "keywords": [
11 "nuxt",
12 "module",
13 "nuxt-module",
14 "hydration"
15 ],
16 "author": {
17 "name": "Daniel Roe <daniel@roe.dev>",
18 "url": "https://github.com/danielroe"
19 },
20 "type": "module",
21 "exports": {
22 ".": {
23 "import": "./dist/module.mjs",
24 "require": "./dist/module.cjs"
25 }
26 },
27 "main": "./dist/module.cjs",
28 "types": "./dist/types.d.ts",
29 "files": [
30 "dist"
31 ],
32 "scripts": {
33 "build": "pnpm dev:prepare && nuxt-module-build build",
34 "dev": "nuxi dev playground",
35 "dev:build": "nuxi build playground",
36 "dev:prepare": "pnpm nuxt-module-build build --stub && nuxi prepare playground",
37 "docs:dev": "nuxi dev docs",
38 "docs:build": "nuxi generate docs",
39 "lint": "pnpm lint:all:eslint",
40 "lint:all:eslint": "pnpm lint:eslint .",
41 "lint:eslint": "eslint --fix",
42 "prepack": "pnpm build",
43 "prepare": "husky install",
44 "prepublishOnly": "pnpm lint && pnpm test && pinst --disable",
45 "release": "bumpp && npm publish",
46 "test": "vitest run",
47 "test:types": "tsc --noEmit",
48 "postinstall": "husky install",
49 "postpublish": "pinst --enable"
50 },
51 "dependencies": {
52 "@nuxt/kit": "^3.11.2"
53 },
54 "devDependencies": {
55 "@nuxt/eslint-config": "0.3.13",
56 "@nuxt/module-builder": "0.8.3",
57 "@nuxt/schema": "3.13.0",
58 "@nuxt/test-utils": "3.14.1",
59 "@types/node": "20.12.7",
60 "@vitest/coverage-v8": "2.0.5",
61 "bumpp": "9.5.2",
62 "eslint": "9.11.1",
63 "expect-type": "1.0.0",
64 "get-port-please": "3.1.2",
65 "husky": "9.0.11",
66 "lint-staged": "15.2.9",
67 "magic-regexp": "0.8.0",
68 "nuxt": "3.13.0",
69 "pinst": "3.0.0",
70 "playwright": "1.45.3",
71 "typescript": "5.3.3",
72 "vite": "5.4.8",
73 "vitest": "2.0.5",
74 "vue": "3.4.38"
75 },
76 "resolutions": {
77 "nuxt-pre-hydrate": "link:."
78 },
79 "packageManager": "pnpm@9.8.0",
80 "volta": {
81 "node": "20.12.2"
82 }
83}