@hugoalh/adler32
Version:
A CLI and module to get the checksum of the data with algorithm Adler32.
57 lines • 1.1 kB
JSON
{
"name": "@hugoalh/adler32",
"version": "0.3.0",
"description": "A CLI and module to get the checksum of the data with algorithm Adler32.",
"keywords": [
"adler32",
"checksum"
],
"homepage": "https://github.com/hugoalh/adler32-es#readme",
"bugs": {
"url": "https://github.com/hugoalh/adler32-es/issues"
},
"license": "MIT",
"author": "hugoalh",
"type": "module",
"bin": {
"adler32": "./cli.js"
},
"main": "./mod.js",
"module": "./mod.js",
"exports": {
"./cli": {
"import": {
"types": "./cli.d.ts",
"default": "./cli.js"
}
},
".": {
"import": {
"types": "./mod.d.ts",
"default": "./mod.js"
}
}
},
"types": "./mod.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/hugoalh/adler32-es.git"
},
"scripts": {},
"dependencies": {
"@deno/shim-deno": "~0.18.0",
"@deno/shim-prompts": "~0.1.0",
"@deno/shim-timers": "~0.1.0"
},
"devDependencies": {
"@types/node": "^20.9.0"
},
"engines": {
"node": ">=16.13.0"
},
"private": false,
"publishConfig": {
"access": "public"
},
"_generatedBy": "dnt@dev"
}