-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.26 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
{
"name": "pinia-plugin-persistedstore",
"version": "1.0.0",
"description": "赋予 pinia 持久化的能力",
"main": "dist/index.min.js",
"module": "dist/index.esm.js",
"author": "sunshine_lin",
"type": "module",
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c"
},
"files": [
"dist"
],
"keywords": [
"pinia",
"persist",
"vuex",
"vue3",
"persiststate",
"vue",
"pinia-plugin",
"pinia-plugin-persist",
"pinia-plugin-persistedstate"
],
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/lodash": "^4.14.197",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.2",
"rollup": "^3.28.0",
"rollup-plugin-dts": "^6.0.0",
"rollup-plugin-typescript2": "^0.35.0",
"rollup-plugin-uglify": "^6.0.4",
"typescript": "^5.1.6"
},
"peerDependencies": {
"pinia": "^2.1.4"
},
"dependencies": {
"sunshine-storage": "1.0.0-beta.7"
},
"repository": {
"type": "git",
"url": "[email protected]:sanxin-lin/pinia-persist.git"
}
}