{
  "name": "pinia",
  "version": "2.0.13",
  "description": "Intuitive, type safe and flexible Store for Vue",
  "main": "index.js",
  "module": "dist/pinia.mjs",
  "unpkg": "dist/pinia.iife.js",
  "jsdelivr": "dist/pinia.iife.js",
  "types": "dist/pinia.d.ts",
  "exports": {
    ".": {
      "browser": "./dist/pinia.esm-browser.js",
      "node": {
        "import": {
          "production": "./dist/pinia.prod.cjs",
          "development": "./dist/pinia.mjs",
          "default": "./dist/pinia.mjs"
        },
        "require": {
          "production": "./dist/pinia.prod.cjs",
          "development": "./dist/pinia.cjs",
          "default": "./index.js"
        }
      },
      "import": "./dist/pinia.mjs"
    },
    "./package.json": "./package.json",
    "./dist/*": "./dist/*"
  },
  "sideEffects": false,
  "author": {
    "name": "Eduardo San Martin Morote",
    "email": "posva13@gmail.com"
  },
  "funding": "https://github.com/sponsors/posva",
  "files": [
    "dist/*.js",
    "dist/*.mjs",
    "dist/*.cjs",
    "dist/pinia.d.ts",
    "index.js",
    "index.cjs",
    "LICENSE",
    "README.md"
  ],
  "keywords": [
    "vue",
    "vuex",
    "store",
    "pinia",
    "piña",
    "pigna",
    "composition",
    "api",
    "setup",
    "typed",
    "typescript",
    "ts",
    "type",
    "safe"
  ],
  "license": "MIT",
  "devDependencies": {
    "@microsoft/api-extractor": "7.19.2",
    "@vue/compiler-sfc": "^3.2.30",
    "@vue/server-renderer": "^3.2.30",
    "@vue/test-utils": "^2.0.0-rc.17",
    "vue": "^3.2.30",
    "vue2": "npm:vue@2"
  },
  "dependencies": {
    "@vue/devtools-api": "^6.1.4",
    "vue-demi": "*"
  },
  "peerDependencies": {
    "@vue/composition-api": "^1.4.0",
    "typescript": ">=4.4.4",
    "vue": "^2.6.14 || ^3.2.0"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    },
    "@vue/composition-api": {
      "optional": true
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vuejs/pinia.git"
  },
  "bugs": {
    "url": "https://github.com/vuejs/pinia/issues"
  },
  "homepage": "https://github.com/vuejs/pinia#readme",
  "scripts": {
    "build": "rimraf dist && rollup -c ../../rollup.config.js --environment TARGET:pinia",
    "build:dts": "api-extractor run --local --verbose && tail -n +3 ./src/globalExtensions.ts >> dist/pinia.d.ts",
    "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path . -l pinia -r 1",
    "test:dts": "tsc -p ./test-dts/tsconfig.json",
    "test": "yarn run build && yarn run build:dts && yarn test:dts"
  },
  "readme": "<p align=\"center\">\n  <a href=\"https://pinia.vuejs.org\" target=\"_blank\" rel=\"noopener noreferrer\">\n    <img width=\"180\" src=\"https://pinia.vuejs.org/logo.svg\" alt=\"Pinia logo\">\n  </a>\n</p>\n\n# Pinia\n\n> Intuitive, type safe and flexible Store for Vue\n\n## 👉 [Demo with Vue 3 on StackBlitz](https://stackblitz.com/github/piniajs/example-vue-3-vite)\n\n## Help me keep working on this project 💚\n\n- [Become a Sponsor on GitHub](https://github.com/sponsors/posva)\n- [One-time donation via PayPal](https://paypal.me/posva)\n\n## Documentation\n\nTo learn more about Pinia, check [its documentation](https://pinia.vuejs.org).\n\n## License\n\n[MIT](http://opensource.org/licenses/MIT)\n"
}