-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.07 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
{
"name": "@kodeythomas/zoomies-rs",
"description": "Blazingly fast bloom filter written in rust, with typescript bindings",
"version": "0.1.0-alpha.1",
"main": "index.js",
"types": "index.d.ts",
"napi": {
"name": "zoomies",
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu"
]
}
},
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^2.15.2",
"ava": "^5.1.1",
"benny": "^3.7.1",
"@types/node": "^20.2.1",
"@types/xxhashjs": "^0.2.2",
"bloom-filters": "^3.0.0",
"chalk": "^5.2.0",
"cli-table": "^0.3.11",
"murmur-128": "^1.0.0",
"murmurhash": "^2.0.1",
"typescript": "^5.0.4",
"xxhashjs": "^0.2.2"
},
"ava": {
"timeout": "3m"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"prepublishOnly": "napi prepublish -t npm",
"test": "ava",
"universal": "napi universal",
"version": "napi version"
}
}