-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "vuex-plugin-persistedstate",
"version": "1.0.6",
"description": "Persist and rehydrate your Vuex state between page reloads.",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"example": "examples"
},
"dependencies": {},
"devDependencies": {
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"tscli": "^0.1.2-alpha.21.03",
"tsup": "^6.2.3",
"typescript": "^4.8.3",
"vue": "^3.2.39",
"vuex": "^4.0.2"
},
"peerDependencies": {
"vuex": "^3.0 || ^4.0"
},
"scripts": {
"dev": "tsup --watch --sourcemap",
"build": "tsup",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lgd8981289/vuex-persistedstate.git"
},
"keywords": [
"vuex",
"vuex-plugin",
"vuex-persistedstate",
"vuex-plugin-persistedstate"
],
"author": "LGD_Sunday",
"bugs": {
"url": "https://github.com/lgd8981289/vuex-persistedstate/issues"
},
"homepage": "https://github.com/lgd8981289/vuex-persistedstate#readme"
}