-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 833 Bytes
/
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
{
"name": "svelte-capacitor-store",
"version": "0.3.5",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc"
},
"keywords": [
"svelte",
"capacitor",
"svelte-store",
"state-management",
"reactivity",
"indexeddb",
"localStorage"
],
"author": "",
"license": "ISC",
"description": "A whole new svelte stores implementation that persists its values using capacitor storage on native devices, and indexedDB/localStorage otherwise.",
"repository": {
"type": "git",
"url": "https://github.com/sdekna/svelte-capacitor-store.git"
},
"dependencies": {
"@capacitor/core": "^6.1.2",
"@capacitor/preferences": "^6.0.2"
},
"devDependencies": {
"typescript": "^5.6.2"
}
}