@keyv/bigmap
Version:
Bigmap for Keyv
73 lines • 1.7 kB
JSON
{
"name": "@keyv/bigmap",
"version": "1.3.0",
"description": "Bigmap for Keyv",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaredwray/keyv.git"
},
"keywords": [
"bigmap",
"keyv",
"key",
"value",
"store",
"cache",
"ttl"
],
"author": "Jared Wray <me@jaredwray.com> (http://jaredwray.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaredwray/keyv/issues"
},
"homepage": "https://github.com/jaredwray/keyv",
"dependencies": {
"hashery": "^1.2.0",
"hookified": "^1.13.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.6",
"@faker-js/faker": "^10.1.0",
"@vitest/coverage-v8": "^4.0.10",
"rimraf": "^6.1.0",
"tsd": "^0.33.0",
"vitest": "^4.0.10"
},
"peerDependencies": {
"keyv": "^5.5.4"
},
"tsd": {
"directory": "test"
},
"engines": {
"node": ">= 18"
},
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"lint": "biome check --write --error-on-warnings",
"lint:ci": "biome check --error-on-warnings",
"test": "pnpm lint && vitest run --coverage",
"test:ci": "pnpm lint:ci && vitest --run --sequence.setupFiles=list --coverage",
"clean": "rimraf ./node_modules ./coverage ./dist"
}
}