-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.62 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
{
"name": "pinia-plugin-store",
"version": "2.3.3",
"description": "pinia plugin store",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
},
"./*": "./*"
},
"scripts": {
"test": "vitest",
"eslint": "eslint --fix **/*.{ts,js}",
"build": "rollup -c rollup.config.js"
},
"dependencies": {
"pinia": "^2.3.0",
"vue": "^3.5.13"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/crypto-js": "^4.2.2",
"@types/node": "^22.10.5",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vue/test-utils": "^2.4.6",
"crypto-js": "^4.2.0",
"happy-dom": "^16.3.0",
"rollup": "^4.30.1",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint-standard": "^9.32.0",
"vitest": "^2.1.8"
},
"author": "mivui",
"license": "MIT",
"keywords": [
"vue",
"pinia",
"persist",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mivui/pinia-plugin-store.git"
},
"bugs": {
"url": "https://github.com/mivui/pinia-plugin-store/issues"
},
"homepage": "https://github.com/mivui/pinia-plugin-store#readme"
}