50 lines
1.1 KiB
JSON
50 lines
1.1 KiB
JSON
{
|
|
"name": "pinia-plugin-persistedstate",
|
|
"type": "module",
|
|
"version": "3.2.3",
|
|
"description": "Configurable persistence and rehydration of Pinia stores.",
|
|
"author": "prazdevs",
|
|
"license": "MIT",
|
|
"homepage": "https://prazdevs.github.io/pinia-plugin-persistedstate/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/prazdevs/pinia-plugin-persistedstate"
|
|
},
|
|
"keywords": [
|
|
"pinia",
|
|
"pinia-plugin"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/index.cjs"
|
|
}
|
|
}
|
|
},
|
|
"main": "dist/index.cjs",
|
|
"module": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup --dts --format esm,cjs src/index.ts",
|
|
"test": "vitest",
|
|
"test:ui": "vitest --ui",
|
|
"test:coverage": "vitest run --coverage",
|
|
"test:run": "vitest --run",
|
|
"release": "bumpp -t \"v%s\" -c \":bookmark: release v\""
|
|
},
|
|
"peerDependencies": {
|
|
"pinia": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"pinia": "^2.1.7"
|
|
}
|
|
}
|