-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.48 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
{
"name": "fugue",
"version": "1.0.0",
"private": true,
"description": "Fugue list CRDT implementations and benchmarks",
"type": "module",
"workspaces": [
"fugue",
"fugue-simple",
"fugue-max-simple",
"crdt-benchmarks",
"crdt-benchmarks/benchmarks/yjs",
"crdt-benchmarks/benchmarks/ywasm",
"crdt-benchmarks/benchmarks/automerge-wasm",
"crdt-benchmarks/benchmarks/fugue",
"crdt-benchmarks/benchmarks/fugue-simple",
"crdt-benchmarks/benchmarks/fugue-max-simple",
"yjs-interleave"
],
"scripts": {
"start": "npm run build && npm start -w crdt-benchmarks && npm run table -w crdt-benchmarks > results_table.md",
"B4x100": "npm run B4x100 -w crdt-benchmarks && npm run table -w crdt-benchmarks > results_table.md",
"build": "npm run build -w fugue && npm run build -w fugue-simple && npm run build -w fugue-max-simple",
"dataclean": "rm results_table.md crdt-benchmarks/benchmarks/results.json",
"clean": "npm run clean -w fugue && npm run clean -w fugue-simple && npm run clean -w fugue-max-simple"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mweidner037/fugue.git"
},
"keywords": [
"CRDT",
"collaborative text editing",
"benchmark"
],
"author": "Matthew Weidner and Martin Kleppmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/mweidner037/fugue/issues"
},
"homepage": "https://github.com/mweidner037/fugue#readme",
"engines": {
"node": "^18.0.0"
}
}