Spaces:
Sleeping
Sleeping
File size: 989 Bytes
0865492 | 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 | {
"name": "@huggingface/blake3-jit",
"version": "0.0.2",
"description": "Temporary fork of blake3-jit with Hasher.reset() and pre-allocated buffers. Will be deprecated once upstream blake3-jit exposes reset().",
"keywords": [
"blake3",
"hash",
"fast",
"wasm"
],
"license": "MIT",
"author": "Hugging Face",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"type": "module",
"sideEffects": false,
"scripts": {
"prepare": "tshy"
},
"tshy": {
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
}
},
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
},
"./package.json": "./package.json"
},
"main": "./dist/commonjs/index.js",
"types": "./dist/commonjs/index.d.ts",
"module": "./dist/esm/index.js"
}
|