-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 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
{
"name": "shareable-data-store",
"description": "a CRDT-based, offline-capable, syncable tree of items for Browser and Node.js with JSON JOY, Y.js or Loro underneath",
"keywords": [
"crdt",
"items",
"collaborative",
"offline-first",
"sync",
"json-joy", "Y.js", "Loro CRDT",
"websocket",
"webrtc",
"indexeddb"
],
"author": "Andreas Rozek",
"homepage": "https://github.com/rozek/shareable-data-store#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/rozek/shareable-data-store.git"
},
"bugs": {
"url": "https://github.com/rozek/shareable-data-store/issues"
},
"license": "MIT",
"private": true,
"packageManager": "pnpm@9.0.0",
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test:run",
"test:run": "pnpm -r test:run",
"dev": "pnpm -r dev",
"typecheck": "pnpm -r typecheck",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"typescript": "^5.7.2"
}
}