Spaces:
Sleeping
Sleeping
File size: 1,230 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 51 52 53 54 55 | {
"name": "@huggingface/xetchunk-wasm",
"version": "0.1.0",
"description": "Content-defined chunking and hashing for Hugging Face Xet storage",
"keywords": [
"xet",
"chunk",
"chunking"
],
"license": "MIT",
"author": "Hugging Face",
"repository": "https://github.com/huggingface/huggingface.js.git",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"src",
"README.md"
],
"tshy": {
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
}
},
"dependencies": {
"gearhash-jit": "1.0.2",
"@huggingface/blake3-jit": "0.0.2"
},
"devDependencies": {
"@huggingface/splitmix64-wasm": "0.0.1"
},
"type": "module",
"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",
"scripts": {
"test": "vitest run",
"bench": "node tests/bench.js"
}
} |