Files
pnpm/packages/crypto.base32-hash/package.json
2024-06-27 22:06:05 +02:00

45 lines
1.0 KiB
JSON

{
"name": "@pnpm/crypto.base32-hash",
"version": "3.0.0",
"description": "Create a base32 hash",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"scripts": {
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"_test": "jest",
"test": "pnpm run compile && pnpm run _test",
"prepublishOnly": "pnpm run compile",
"compile": "tsc --build && pnpm run lint --fix"
},
"repository": "https://github.com/pnpm/pnpm/blob/main/packages/crypto.base32-hash",
"keywords": [
"pnpm9",
"hash",
"crypto",
"base32"
],
"engines": {
"node": ">=18.12"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/packages/crypto.base32-hash#readme",
"dependencies": {
"rfc4648": "catalog:"
},
"devDependencies": {
"@pnpm/crypto.base32-hash": "workspace:*",
"@pnpm/prepare": "workspace:*"
},
"funding": "https://opencollective.com/pnpm",
"exports": {
".": "./lib/index.js"
}
}