| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- {
- "name": "pinia-plugin-persistedstate",
- "type": "module",
- "version": "4.3.0",
- "packageManager": "pnpm@10.10.0",
- "description": "Configurable persistence and rehydration of Pinia stores.",
- "author": "Sacha Bouillez <hi@praz.dev> (https://praz.dev)",
- "license": "MIT",
- "homepage": "https://prazdevs.github.io/pinia-plugin-persistedstate",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/prazdevs/pinia-plugin-persistedstate.git"
- },
- "sponsor": {
- "url": "https://github.com/sponsors/prazdevs"
- },
- "bugs": {
- "url": "https://github.com/prazdevs/pinia-plugin-persistedstate/issues"
- },
- "keywords": [
- "vue",
- "store",
- "pinia",
- "persistence",
- "pinia-plugin",
- "nuxt",
- "nuxt-module"
- ],
- "exports": {
- ".": {
- "import": {
- "types": "./dist/index.d.ts",
- "default": "./dist/index.js"
- },
- "require": {
- "types": "./dist/index.d.cts",
- "default": "./dist/index.cjs"
- }
- },
- "./nuxt": {
- "import": {
- "types": "./dist/nuxt/types.d.mts",
- "default": "./dist/nuxt/module.mjs"
- }
- }
- },
- "main": "./dist/index.js",
- "types": "./dist/index.d.ts",
- "files": [
- "dist"
- ],
- "scripts": {
- "build": "pnpm build:plugin && pnpm build:umd && pnpm build:module",
- "build:plugin": "tsup src/index.ts --dts --format esm,cjs",
- "build:module": "nuxt-module-build build --outDir dist/nuxt",
- "build:umd": "rollup -c rollup.config.js",
- "dev": "nuxi dev playground",
- "dev:build": "nuxi build playground",
- "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
- "release": "changelogen --release --push",
- "docs": "vitepress dev docs",
- "docs:build": "vitepress build docs",
- "docs:preview": "vitepress preview docs",
- "lint": "eslint .",
- "lint:fix": "eslint . --fix",
- "publint": "publint",
- "typecheck": "nuxi typecheck"
- },
- "peerDependencies": {
- "@pinia/nuxt": ">=0.10.0",
- "pinia": ">=3.0.0"
- },
- "peerDependenciesMeta": {
- "@pinia/nuxt": {
- "optional": true
- },
- "pinia": {
- "optional": true
- }
- },
- "dependencies": {
- "@nuxt/kit": "^3.17.2",
- "deep-pick-omit": "^1.2.1",
- "defu": "^6.1.4",
- "destr": "^2.0.5"
- },
- "devDependencies": {
- "@antfu/eslint-config": "^4.13.0",
- "@iconify-json/catppuccin": "^1.2.11",
- "@nuxt/devtools": "^2.4.0",
- "@nuxt/module-builder": "^1.0.1",
- "@nuxt/schema": "^3.17.2",
- "@nuxt/test-utils": "^3.18.0",
- "@pinia/nuxt": "^0.11.0",
- "@rollup/plugin-node-resolve": "^16.0.1",
- "@shikijs/vitepress-twoslash": "^3.4.0",
- "@types/node": "^22.15.17",
- "changelogen": "^0.6.1",
- "esbuild": "^0.25.4",
- "eslint": "^9.26.0",
- "eslint-plugin-format": "^1.0.1",
- "lint-staged": "^16.0.0",
- "nuxt": "^3.17.2",
- "pinia": "^3.0.2",
- "pinia-plugin-persistedstate": "link:",
- "publint": "^0.3.12",
- "rollup": "^4.40.2",
- "rollup-plugin-esbuild": "^6.2.1",
- "simple-git-hooks": "^2.13.0",
- "tsup": "^8.4.0",
- "typescript": "~5.8.3",
- "vitepress": "^1.6.3",
- "vitepress-plugin-group-icons": "^1.5.2",
- "vue": "^3.5.13",
- "vue-tsc": "^2.2.10"
- },
- "simple-git-hooks": {
- "pre-commit": "pnpm lint-staged"
- },
- "lint-staged": {
- "*": "eslint --fix"
- }
- }
|