File size: 880 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
{
	"name": "gearhash-jit",
	"version": "1.0.2",
	"description": "Fast GEAR hash with hand-written WASM i64 bytecode for content-defined chunking",
	"keywords": [
		"gearhash",
		"cdc",
		"chunking",
		"wasm"
	],
	"license": "MIT",
	"sideEffects": false,
	"files": [
		"dist",
		"README.md"
	],
	"scripts": {
		"prepare": "tshy",
		"test": "vitest run"
	},
	"tshy": {
		"exports": {
			".": "./src/index.ts",
			"./package.json": "./package.json"
		}
	},
	"devDependencies": {},
	"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"
}