forked from yjs/y-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.5 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
62
63
64
65
66
{
"name": "y-redis",
"version": "1.0.3",
"description": "Redis persistence adapter for Yjs",
"main": "./src/y-redis.js",
"types": "./dist/src/y-redis.d.ts",
"type": "module",
"sideEffects": "false",
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/dmonad"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": "./src/y-redis.js",
"require": "./dist/y-redis.cjs"
}
},
"scripts": {
"dist": "rm -rf dist && rollup -c && tsc",
"test": "LOG=y-redis node ./tests/index.js",
"debug": "LOG=y-redis node --unhandled-rejections=strict --inspect-brk ./tests/index.js",
"lint": "standard && tsc",
"preversion": "npm run lint && npm test && npm run dist"
},
"files": [
"dist/*",
"src/*",
"tests/*",
"docs/*"
],
"repository": {
"type": "git",
"url": "https://github.com/yjs/y-redis"
},
"keywords": [
"Yjs",
"Collaboration",
"Synchronization",
"ShareJS",
"Coweb",
"Concurrency",
"Persistence"
],
"author": "Kevin Jahns <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yjs/y-redis/issues"
},
"homepage": "https://yjs.dev",
"devDependencies": {
"@types/ioredis": "^4.26.6",
"rollup": "^1.32.1",
"standard": "^10.0.3",
"typescript": "^3.9.10",
"yjs": "^13.5.11"
},
"peerDependencies": {
"yjs": "^13.0.2"
},
"dependencies": {
"ioredis": "^4.27.6",
"lib0": "^0.2.42"
}
}