-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.13 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.13 KB
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
78
79
80
81
82
83
84
{
"name": "pinia-plugin-capacitor-persist",
"description": "A Vue 3 Pinia plugin which persists store content using the CapacitorJS Preferences store.",
"type": "module",
"version": "1.7.1",
"license": "MIT",
"author": "Craig Riley <hello@craigriley.uk> (https://craigriley.uk)",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/craigrileyuk/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/craigrileyuk/pinia-plugin-capacitor-persist.git"
},
"scripts": {
"demo": "vite -c vite-demo.config.ts",
"dev": "vite",
"build": "vite build && tsc",
"lint": "eslint ./src --ext .ts",
"prepublishOnly": "npm run lint && npm run build"
},
"files": [
"dist",
"types"
],
"main": "./dist/pinia-capacitor-persist.umd.js",
"module": "./dist/pinia-capacitor-persist.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/pinia-capacitor-persist.es.js",
"require": "./dist/pinia-capacitor-persist.umd.js"
}
},
"devDependencies": {
"@babel/types": "^7.29.0",
"@eslint/js": "^9.39.2",
"@tailwindcss/vite": "^4.1.18",
"@types/node": "^25.1.0",
"@vitejs/plugin-vue": "^6.0.3",
"c8": "^10.1.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.2.0",
"happy-dom": "^20.4.0",
"pinia": "^3.0.4",
"prettier": "^3.8.1",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vite": "npm:rolldown-vite@^7.3.1",
"vue": "^3.5.27"
},
"peerDependencies": {
"@capacitor/preferences": "^4.0.0 || ^5.0.0 || ^6.0 || ^7.0 || ^8.0",
"pinia": "^2.0.0 || ^3.0.0",
"vue": "^3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"keywords": [
"vue",
"vue3",
"store",
"pinia",
"capacitor",
"capacitorjs",
"quasar",
"mobile",
"persist",
"plugin",
"async"
],
"packageManager": "pnpm@10.28.0+sha512.05df71d1421f21399e053fde567cea34d446fa02c76571441bfc1c7956e98e363088982d940465fd34480d4d90a0668bc12362f8aa88000a64e83d0b0e47be48"
}