-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
76 lines (76 loc) · 1.83 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
{
"name": "pinia-plugin-persistedstate-2",
"version": "2.0.28",
"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.3.0"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@size-limit/preset-small-lib": "11.1.6",
"@types/jest": "29.5.14",
"@types/node": "22.10.2",
"@vue/test-utils": "2.4.6",
"change-case": "5.4.4",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"pinia": "2.3.0",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"size-limit": "11.1.6",
"ts-jest": "29.2.5",
"typescript": "5.7.2",
"vite": "6.0.6",
"vite-plugin-dts": "4.4.0",
"vue": "3.5.13"
}
}