{
	"name": "@hugoalh/djb2a",
	"version": "0.1.0",
	"description": "A CLI and module to get the non-cryptographic hash of the data with algorithm DJB2a.",
	"keywords": [
		"djb2a",
		"hash"
	],
	"homepage": "https://github.com/hugoalh/djb2a-es#readme",
	"bugs": {
		"url": "https://github.com/hugoalh/djb2a-es/issues"
	},
	"license": "MIT",
	"author": "hugoalh",
	"type": "module",
	"bin": {
		"djb2a": "./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/djb2a-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"
}