forked from hugomrdias/rabin-wasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 975 Bytes
/
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": "rabin-rs",
"version": "2.1.0",
"description": "Rabin chunker for IPFS implementation in Rust",
"keywords": [
"rabin",
"wasm",
"ipfs",
"chunker"
],
"author": "Irakli Gozalshvili <dev@gozala.io> (https://gozala.io/work)",
"license": "(Apache-2.0 AND MIT)",
"files": [
"gen",
"test",
"lib.js",
"lib.d.ts"
],
"scripts": {
"build": "node scripts/build.js",
"test:node": "mocha ./test/test.js",
"test:web": "playwright-test ./test/test.js"
},
"devDependencies": {
"playwright-test": "^7.2.2",
"mocha": "^9.2.1",
"chai": "^4.3.6",
"fzstd": "^0.0.4",
"multiformats": "^9.6.4"
},
"module": "./lib.js",
"types": "./lib.d.ts",
"sideEffects": false,
"type": "module",
"main": "./lib.js",
"exports": {
".": {
"import": "./lib.js",
"types": "./lib.d.ts"
}
},
"repository": {
"type": "git",
"url": "git://github.com/gozala/rabin-wasm.git"
}
}