-
-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathpackage.json
127 lines (127 loc) · 3.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "pinia-plugin-persistedstate",
"type": "module",
"version": "4.2.0",
"packageManager": "[email protected]",
"description": "Configurable persistence and rehydration of Pinia stores.",
"author": "Sacha Bouillez <[email protected]> (https://praz.dev)",
"license": "MIT",
"homepage": "https://prazdevs.github.io/pinia-plugin-persistedstate",
"repository": {
"type": "git",
"url": "https://github.com/prazdevs/pinia-plugin-persistedstate"
},
"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"
},
"require": {
"types": "./dist/nuxt/types.d.ts",
"default": "./dist/nuxt/module.cjs"
}
}
},
"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:dev": "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.9.0",
"pinia": ">=2.3.0"
},
"peerDependenciesMeta": {
"@pinia/nuxt": {
"optional": true
},
"pinia": {
"optional": true
}
},
"dependencies": {
"@nuxt/kit": "^3.14.1592",
"deep-pick-omit": "^1.2.1",
"defu": "^6.1.4",
"destr": "^2.0.3"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.0",
"@iconify-json/catppuccin": "^1.2.8",
"@nuxt/devtools": "^1.6.4",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.14.1592",
"@nuxt/test-utils": "^3.15.1",
"@pinia/nuxt": "^0.9.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@shikijs/vitepress-twoslash": "^1.24.2",
"@types/node": "^22.10.2",
"changelogen": "^0.5.7",
"esbuild": "^0.24.0",
"eslint": "~9.17.0",
"eslint-plugin-format": "^0.1.3",
"lint-staged": "^15.2.11",
"nuxt": "^3.14.1592",
"pinia": "^2.3.0",
"pinia-plugin-persistedstate": "link:",
"publint": "^0.2.12",
"rollup": "^4.28.1",
"rollup-plugin-esbuild": "^6.1.1",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.3.5",
"typescript": "~5.6.3",
"vitepress": "^1.5.0",
"vitepress-plugin-group-icons": "^1.3.1",
"vue": "^3.5.13",
"vue-tsc": "^2.1.10"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}