-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.1 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
{
"name": "@7y1o/svelte-capacitor-safe-store",
"version": "0.1.0",
"homepage": "https://github.com/7y1o/svelte-capacitor-safe-store",
"description": "Capacitor storage with safety JSON storing",
"author": "7y1o <tdesu.webdesign@gmail.com>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/7y1o/svelte-capacitor-safe-store.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"capacitor",
"storage",
"store",
"crypt",
"crypto",
"types",
"typescript",
"ts",
"cap",
"7y1o"
],
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"esbuild": "^0.14.39",
"svelte": "^3.48.0",
"typescript": "^4.6.4",
"@capacitor/storage": "^1.2.5"
},
"dependencies": {
"crypto-js": "^4.1.1"
},
"peerDependencies": {
"@capacitor/storage": "^1.2.5",
"@capacitor/core": "^3.5.1",
"svelte": "3.x"
}
}