-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.58 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
{
"name": "y-localforage",
"version": "0.1.5",
"description": "a simple Yjs storage provider using localForage for persistence",
"source": "./src/y-localforage.ts",
"main": "./dist/y-localforage.umd.js",
"browser":"./dist/y-localforage.umd.js",
"module": "./dist/y-localforage.esm.js",
"svelte": "./dist/y-localforage.esm.js",
"types": "./dist/y-localforage.d.ts",
"exports": {
".": {
"require":"./dist/y-localforage.umd.js",
"browser":"./dist/y-localforage.umd.js",
"import": "./dist/y-localforage.esm.js",
"svelte": "./dist/y-localforage.esm.js",
"types": "./dist/y-localforage.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "rimraf dist && microbundle && rimraf dist/src && rm dist/y-localforage.js*",
"agadoo": "agadoo",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rozek/y-localforage.git"
},
"keywords": [
"yjs",
"crdt",
"localforage",
"database-provider",
"storage-provider"
],
"author": "Andreas Rozek <a.rozek@gmx.de> (https://www.rozek.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rozek/y-localforage/issues"
},
"homepage": "https://github.com/rozek/y-localforage#readme",
"devDependencies": {
"@types/blueimp-md5": "^2.18.0",
"agadoo": "^2.0.0",
"rimraf": "^3.0.2",
"microbundle": "^0.15.1",
"tslib": "^2.6.2",
"typescript": "^4.3.5"
},
"dependencies": {
"lib0": "^0.2.74",
"localforage": "^1.10.0",
"yjs": "^13.6.1"
}
}