-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
52 lines (52 loc) · 1.63 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": "@byojs/storage",
"description": "Simple key-value storage API backed by various client storage mechanisms",
"version": "0.12.0",
"exports": {
"./idb": "./dist/adapter.idb.mjs",
"./local-storage": "./dist/adapter.local-storage.mjs",
"./session-storage": "./dist/adapter.session-storage.mjs",
"./cookie": "./dist/adapter.cookie.mjs",
"./opfs": "./dist/adapter.opfs.mjs",
"./opfs-worker": "./dist/adapter.opfs-worker.mjs"
},
"browser": {
"@byojs/storage/idb": "./dist/adapter.idb.mjs",
"@byojs/storage/local-storage": "./dist/adapter.local-storage.mjs",
"@byojs/storage/session-storage": "./dist/adapter.session-storage.mjs",
"@byojs/storage/cookie": "./dist/adapter.cookie.mjs",
"@byojs/storage/opfs": "./dist/adapter.opfs.mjs",
"@byojs/storage/opfs-worker": "./dist/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": {
"idb-keyval": "~6.2.1"
},
"devDependencies": {
"micromatch": "~4.0.8",
"recursive-readdir-sync": "~1.0.6",
"terser": "~5.37.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/byojs/storage.git"
},
"keywords": [
"storage"
],
"bugs": {
"url": "https://github.com/byojs/storage/issues",
"email": "getify@gmail.com"
},
"homepage": "https://github.com/byojs/storage",
"author": "Kyle Simpson <getify@gmail.com>",
"license": "MIT"
}