@pinia/nuxt
Version:
Nuxt Module for pinia
63 lines • 1.59 kB
JSON
{
"name": "@pinia/nuxt",
"version": "0.6.0",
"description": "Nuxt Module for pinia",
"keywords": [
"pinia",
"nuxt",
"vue",
"vuex",
"store"
],
"homepage": "https://github.com/vuejs/pinia/tree/v2/packages/nuxt#readme",
"bugs": {
"url": "https://github.com/vuejs/pinia/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/pinia.git"
},
"funding": "https://github.com/sponsors/posva",
"license": "MIT",
"author": {
"name": "Eduardo San Martin Morote",
"email": "posva13@gmail.com"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"dependencies": {
"@nuxt/kit": "^3.9.0",
"pinia": "^2.2.5"
},
"devDependencies": {
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.9.0",
"@nuxt/test-utils": "^3.14.2",
"nuxt": "^3.13.2",
"typescript": "^5.6.2",
"vue-tsc": "^2.1.6"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "pnpm run dev:prepare && nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub . && nuxi prepare playground",
"test:types": "pnpm dev:prepare && nuxi typecheck",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path . -l @pinia/nuxt -r 1"
}
}