[READ-ONLY] Mirror of https://github.com/danielroe/nuxt-pre-hydrate.
0

Configure Feed

Select the types of activity you want to include in your feed.

nuxt-pre-hydrate / package.json
2.4 kB 86 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": "danielroe/nuxt-pre-hydrate", 7 "keywords": [ 8 "nuxt", 9 "module", 10 "nuxt-module", 11 "hydration" 12 ], 13 "author": { 14 "name": "Daniel Roe <daniel@roe.dev>", 15 "url": "https://github.com/danielroe" 16 }, 17 "type": "module", 18 "exports": { 19 ".": { 20 "import": "./dist/module.mjs", 21 "require": "./dist/module.cjs" 22 } 23 }, 24 "main": "./dist/module.cjs", 25 "types": "./dist/types.d.ts", 26 "files": [ 27 "dist" 28 ], 29 "scripts": { 30 "build": "pnpm dev:prepare && nuxt-module-build", 31 "dev": "nuxi dev playground", 32 "dev:build": "nuxi build playground", 33 "dev:prepare": "pnpm nuxt-module-build --stub && nuxi prepare playground", 34 "docs:dev": "nuxi dev docs", 35 "docs:build": "nuxi generate docs", 36 "lint": "pnpm lint:all:eslint && pnpm lint:all:prettier", 37 "lint:all:eslint": "pnpm lint:eslint --ext .ts,.js,.mjs,.cjs .", 38 "lint:all:prettier": "pnpm lint:prettier \"{src,test}/**/*.{js,json,ts}\"", 39 "lint:eslint": "eslint --fix", 40 "lint:prettier": "prettier --write --loglevel warn", 41 "prepack": "pnpm build", 42 "prepare": "husky install", 43 "prepublishOnly": "pnpm lint && pnpm test && pinst --disable", 44 "release": "bumpp && npm publish", 45 "test": "vitest run", 46 "test:types": "tsc --noEmit", 47 "postinstall": "husky install", 48 "postpublish": "pinst --enable" 49 }, 50 "dependencies": { 51 "@nuxt/kit": "^3.5.3" 52 }, 53 "devDependencies": { 54 "@nuxt/module-builder": "0.4.0", 55 "@nuxt/schema": "3.5.3", 56 "@nuxt/test-utils": "3.5.3", 57 "@nuxtjs/eslint-config-typescript": "12.0.0", 58 "@types/node": "20.4.8", 59 "@vitest/coverage-v8": "0.34.1", 60 "bumpp": "9.1.1", 61 "eslint": "8.46.0", 62 "eslint-config-prettier": "8.10.0", 63 "eslint-plugin-prettier": "4.2.1", 64 "expect-type": "0.16.0", 65 "get-port-please": "3.0.1", 66 "husky": "8.0.3", 67 "lint-staged": "13.2.3", 68 "magic-regexp": "0.7.0", 69 "nuxt": "3.5.3", 70 "nuxt-vitest": "0.10.2", 71 "pinst": "3.0.0", 72 "playwright": "1.36.2", 73 "prettier": "2.8.8", 74 "typescript": "5.1.6", 75 "vite": "4.4.8", 76 "vitest": "0.34.1", 77 "vue": "3.3.4" 78 }, 79 "resolutions": { 80 "nuxt-pre-hydrate": "link:." 81 }, 82 "packageManager": "pnpm@8.6.11", 83 "volta": { 84 "node": "18.17.0" 85 } 86}