forked from prazdevs/pinia-plugin-persistedstate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 2.75 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
{
"name": "pinia-plugin-persistedstate",
"version": "2.1.1",
"packageManager": "[email protected]",
"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"
],
"scripts": {
"build": "tsup",
"coverage": "vue-demi-switch 3 && vitest --run --coverage",
"docs": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --ext .ts --fix .",
"prepare": "husky install",
"release": "bumpp -t -p -c \":bookmark: release v\"",
"test:ui": "vue-demi-switch 3 && vitest --ui",
"test:watch": "vue-demi-switch 3 && vitest --watch",
"test:2": "vue-demi-switch 2.7 vue2 && vitest --run --silent tests/plugin",
"test:3": "vue-demi-switch 3 && vitest --run",
"test": "pnpm run test:2 && pnpm run test:3"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./*": "./*",
"./nuxt": {
"import": "./dist/nuxt.mjs",
"require": "./dist/nuxt.js"
},
"./quasar": {
"import": "./dist/quasar.mjs",
"require": "./dist/quasar.js"
}
},
"typesVersions": {
"*": {
"nuxt": [
"./dist/nuxt.d.ts"
],
"quasar": [
"./dist/quasar.d.ts"
]
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"peerDependencies": {
"pinia": "^2.0.0"
},
"peerDependenciesMeta": {
"pinia": {
"optional": true
}
},
"devDependencies": {
"@prazdevs/eslint-config-typescript": "^3.2.1",
"@types/node": "^18.7.13",
"@vitest/coverage-c8": "^0.22.1",
"@vitest/ui": "^0.22.1",
"bumpp": "^8.2.1",
"eslint": "8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"happy-dom": "^6.0.4",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nuxt": "3.0.0-rc.8",
"pinia": "^2.0.21",
"prettier": "^2.7.1",
"quasar": "^2.7.7",
"tsup": "^6.2.3",
"typescript": "^4.8.2",
"vite": "^3.0.9",
"vitepress": "1.0.0-alpha.12",
"vitest": "^0.22.1",
"vue": "^3.2.37",
"vue-demi": "^0.13.11",
"vue2": "npm:vue@^2.7.5"
},
"lint-staged": {
"*.ts": "eslint --ext .ts --fix"
},
"volta": {
"node": "18.1.0"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"vue": "3"
},
"ignoreMissing": [
"@algolia/client-search"
]
}
}
}