-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.16 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
{
"name": "@movizon/fsa-chunk-store",
"description": "File System Access API chunk store that is abstract-chunk-store compliant, with filesystem-like folder structure.",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git://github.com/movizon/fsa-chunk-store.git"
},
"author": {
"name": "Richard T",
"email": "[email protected]",
"url": "https://www.movizon.org"
},
"contributors": [
"Richard T <[email protected]> (https://www.movizon.org)"
],
"bugs": {
"url": "https://github.com/movizon/fsa-chunk-store/issues"
},
"homepage": "https://github.com/movizon/fsa-chunk-store",
"keywords": [
"abstract-chunk-store",
"chunk",
"webfs",
"file system access api",
"filesystem access",
"file system access",
"FileSystemHandle",
"FileSystemFileHandle",
"FileSystemDirectoryHandle",
"FileSystemWritableFileStream"
],
"scripts": {
"test": "standard"
},
"dependencies": {
"idb-keyval": "^6.1.0"
},
"devDependencies": {
"abstract-chunk-store": "^1.5.0",
"standard": "*",
"tape": "^5.5.2"
}
}