-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.38 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.38 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "blake3-bao",
"version": "1.3.3",
"description": "Pure JavaScript BLAKE3 hash and Bao verified streaming implementation with Iroh compatibility",
"main": "index.js",
"module": "index.mjs",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./index.mjs",
"require": "./index.js"
},
"./blake3": {
"types": "./types/blake3.d.ts",
"import": "./blake3.mjs",
"require": "./blake3.js"
},
"./bao": {
"types": "./types/bao.d.ts",
"import": "./bao.mjs",
"require": "./bao.js"
}
},
"browser": "./dist/blake3-bao.min.js",
"files": [
"index.js",
"index.mjs",
"blake3.js",
"blake3.mjs",
"bao.js",
"bao.mjs",
"bao-wasm.js",
"bao-wasm-zerocopy.js",
"bao-rust-wasm.js",
"bao-rust-worker.js",
"bao-rust-parallel.js",
"worker-pool.js",
"rust-bao/pkg/",
"build/release.wasm",
"dist/",
"types/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "webpack --config webpack.config.js",
"build:watch": "webpack --config webpack.config.js --watch",
"test": "node test.js && node test-keyed.js && node test-kdf.js && node test-xof.js && node test-streaming.js && node test-bao-vectors.js && node test-bao-primitives.js && node test-bao-encode.js && node test-bao-decode.js && node test-bao-slice.js && node test-bao-streaming.js && node test-bao-iroh.js && node test-bao-partial.js && node test-bao-sequence.js",
"asbuild:debug": "asc assembly/index.ts --target debug",
"asbuild:release": "asc assembly/index.ts --target release",
"asbuild": "npm run asbuild:debug && npm run asbuild:release",
"start": "npx serve ."
},
"keywords": [
"blake3",
"bao",
"hash",
"crypto",
"merkle",
"streaming",
"verified-streaming",
"iroh",
"content-addressing"
],
"author": "lamb",
"license": "MIT",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/lamb356/blake3-optimized.git"
},
"bugs": {
"url": "https://github.com/lamb356/blake3-optimized/issues"
},
"homepage": "https://github.com/lamb356/blake3-optimized#readme",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"assemblyscript": "^0.28.9",
"terser-webpack-plugin": "^5.3.16",
"webpack": "^5.104.0",
"webpack-cli": "^6.0.1"
}
}