-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
77 lines (77 loc) · 1.86 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
{
"name": "pinia-plugin-persistedstate-2",
"version": "2.0.26",
"sideEffects": false,
"description": "Persist and rehydrate your Pinia state between page reloads",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/soc221b/pinia-plugin-persistedstate-2.git"
},
"bugs": {
"url": "https://github.com/soc221b/pinia-plugin-persistedstate-2/issues"
},
"homepage": "https://github.com/soc221b/pinia-plugin-persistedstate-2#readme",
"author": "Ernest <>",
"license": "MIT",
"keywords": [
"vue",
"pinia",
"plugin",
"persist",
"rehydrate",
"async",
"localforage"
],
"scripts": {
"build": "tsc && vite build",
"check-size": "size-limit",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"prepare": "husky install",
"test": "jest --watch",
"test:run": "jest"
},
"dependencies": {
"shvl": "^3.0.0"
},
"peerDependencies": {
"pinia": "^2"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@size-limit/preset-small-lib": "^11.1.4",
"@types/jest": "29.5.14",
"@types/node": "22.9.0",
"@vue/test-utils": "2.4.6",
"change-case": "5.4.4",
"husky": "9.1.6",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"pinia": "2.2.2",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"size-limit": "11.1.6",
"standard-version": "9.5.0",
"ts-jest": "29.2.5",
"typescript": "5.6.3",
"vite": "^5.1.0",
"vite-plugin-dts": "^4.0.0",
"vue": "3.5.12"
}
}