-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
62 lines (62 loc) · 1.55 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
{
"name": "benchmarks",
"version": "1.0.0",
"private": true,
"description": "CRDT benchmarks",
"type": "module",
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/dmonad"
},
"workspaces": [
"benchmarks/yjs",
"benchmarks/ywasm",
"benchmarks/loro",
"benchmarks/automerge",
"benchmarks/automerge-wasm",
"benchmarks/diamond-types"
],
"scripts": {
"clean": "rm -rf node_modules ./benchmarks/*/node_modules ./benchmarks/*/dist",
"start": "npm run start -ws",
"start:bun": "npm run start:bun -ws",
"table": "node bin/render-table.js benchmarks/results.json 6000 yjs ywasm loro automerge diamond-types",
"lint": "standard && tsc"
},
"standard": {
"ignore": [
"**/dist/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmonad/crdt-benchmarks.git"
},
"keywords": [
"CRDT",
"benchmark"
],
"author": "Kevin Jahns",
"license": "MIT",
"bugs": {
"url": "https://github.com/dmonad/crdt-benchmarks/issues"
},
"homepage": "https://github.com/dmonad/crdt-benchmarks#readme",
"engines": {
"node": "^20.0.0"
},
"dependencies": {
"lib0": "^0.2.42"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-wasm": "^6.2.2",
"rollup": "^2.77.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-terser": "^7.0.2",
"standard": "^16.0.3",
"typescript": "^5.3.3"
}
}