forked from rocicorp/mono
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.29 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.29 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "btree",
"private": true,
"version": "0.0.0",
"description": "A sorted list of key-value pairs in a fast, typed in-memory B+ tree with a powerful API.",
"main": "b+tree.js",
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"check-types": "tsc --noEmit",
"benchmark": "npm run build && node benchmarks.js"
},
"files": [
"b+tree.js",
"b+tree.d.ts",
"b+tree.min.js",
"sorted-array.js",
"sorted-array.d.ts",
"interfaces.d.ts",
"readme.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/qwertie/btree-typescript.git"
},
"keywords": [
"B+",
"tree",
"btree",
"sorted",
"set",
"map",
"list",
"collection",
"fast-cloning",
"copy-on-write",
"optimized"
],
"author": "David Piepgrass",
"license": "MIT",
"bugs": {
"url": "https://github.com/qwertie/btree-typescript/issues"
},
"homepage": "https://github.com/qwertie/btree-typescript#readme",
"devDependencies": {
"@types/bintrees": "^1.0.2",
"@types/collections": "^5.0.2",
"@types/mersenne-twister": "^1.1.2",
"bintrees": "^1.0.2",
"collections": "^5.1.11",
"functional-red-black-tree": "^1.0.1",
"mersenne-twister": "^1.1.0",
"typescript": "^5.5.3"
}
}