-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 2.2 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
{
"name": "@lo-fi/local-vault",
"description": "Store key-value data encrypted (biometric passkey protected), locally in the client",
"version": "0.17.0",
"exports": {
".": "./dist/bundlers/lv.mjs",
"./adapter/idb": "./dist/bundlers/adapter.idb.mjs",
"./adapter/local-storage": "./dist/bundlers/adapter.local-storage.mjs",
"./adapter/session-storage": "./dist/bundlers/adapter.session-storage.mjs",
"./adapter/cookie": "./dist/bundlers/adapter.cookie.mjs",
"./adapter/opfs": "./dist/bundlers/adapter.opfs.mjs",
"./adapter/opfs-worker": "./dist/bundlers/adapter.opfs-worker.mjs",
"./bundlers/astro": "./bundler-plugins/astro.mjs",
"./bundlers/vite": "./bundler-plugins/vite.mjs",
"./bundlers/webpack": "./bundler-plugins/webpack.mjs"
},
"browser": {
"@lo-fi/local-vault": "./dist/bundlers/lv.mjs",
"@lo-fi/local-vault/adapter/idb": "./dist/bundlers/adapter.idb.mjs",
"@lo-fi/local-vault/adapter/local-storage": "./dist/bundlers/adapter.local-storage.mjs",
"@lo-fi/local-vault/adapter/session-storage": "./dist/bundlers/adapter.session-storage.mjs",
"@lo-fi/local-vault/adapter/cookie": "./dist/bundlers/adapter.cookie.mjs",
"@lo-fi/local-vault/adapter/opfs": "./dist/bundlers/adapter.opfs.mjs",
"@lo-fi/local-vault/adapter/opfs-worker": "./dist/bundlers/adapter.opfs-worker.mjs"
},
"scripts": {
"build:all": "node scripts/build-all.js",
"build:gh-pages": "npm run build:all && node scripts/build-gh-pages.js",
"build": "npm run build:all",
"test:start": "npx http-server test/ -p 8080",
"test": "npm run test:start",
"postinstall": "node scripts/postinstall.js",
"prepublishOnly": "npm run build:all"
},
"dependencies": {
"@byojs/storage": "~0.11.1",
"@lo-fi/local-data-lock": "~0.15.1"
},
"devDependencies": {
"micromatch": "~4.0.5",
"recursive-readdir-sync": "~1.0.6",
"terser": "~5.29.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mylofi/local-vault.git"
},
"keywords": [
"auth",
"storage",
"encryption",
"local-first"
],
"bugs": {
"url": "https://github.com/mylofi/local-vault/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/mylofi/local-vault",
"author": "Kyle Simpson <[email protected]>",
"license": "MIT"
}