-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
70 lines (70 loc) · 1.54 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
67
68
69
70
{
"name": "y-mongodb-provider",
"version": "0.2.0",
"description": "MongoDB database adapter for Yjs",
"type": "module",
"main": "./dist/y-mongodb.cjs",
"module": "./src/y-mongodb.js",
"types": "./dist/y-mongodb.d.ts",
"exports": {
".": {
"module": "./src/y-mongodb.js",
"import": "./src/y-mongodb.js",
"require": "./dist/y-mongodb.cjs",
"types": "./dist/y-mongodb.d.ts"
}
},
"scripts": {
"dist": "rollup -c && tsc",
"clean": "rm -rf dist",
"test": "npm run dist && jest",
"lint": "npx eslint ./src/* && npx tsc",
"build": "npm run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaxNoetzold/y-mongodb-provider.git"
},
"author": "Max Nötzold <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MaxNoetzold/y-mongodb-provider/issues"
},
"dependencies": {
"lib0": "^0.2.94",
"mongodb": "^6.7.0"
},
"peerDependencies": {
"yjs": "^13.6.15"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"mongodb-memory-server": "^9.3.0",
"rollup": "^4.18.0",
"typescript": "^5.4.5",
"yjs": "^13.6.15"
},
"files": [
"dist/*",
"src/*"
],
"homepage": "https://github.com/MaxNoetzold/y-mongodb-provider#readme",
"keywords": [
"Yjs",
"MongoDB",
"database",
"adapter",
"shared editing",
"collaboration",
"offline",
"CRDT",
"concurrency",
"persistence"
]
}