forked from arpitkhandelwal12/ZerithDB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.12 KB
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
{
"name": "zerithdb-sync",
"version": "0.2.0",
"description": "CRDT-based sync engine for ZerithDB — powered by Yjs",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"dev": "tsup src/index.ts --format esm,cjs --dts --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run --passWithNoTests",
"clean": "rimraf dist"
},
"dependencies": {
"zerithdb-core": "workspace:*",
"zerithdb-db": "workspace:*",
"zerithdb-network": "workspace:*",
"lib0": "^0.2.98",
"y-indexeddb": "^9.0.12",
"yjs": "^13.6.18"
},
"devDependencies": {
"zerithdb-eslint-config": "workspace:*",
"zerithdb-tsconfig": "workspace:*",
"fake-indexeddb": "^6.0.0",
"rimraf": "^6.0.1",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"files": [
"dist",
"src"
]
}