{
	"name": "@m4x1m1l14n/cache",
	"version": "1.2.0",
	"description": "Lightweight in-memory isomorphic cache implementation with TTL for browser & Node JS written in TypeScript",
	"main": "dist/main.js",
	"types": "dist/main.d.ts",
	"files": [
		"dist"
	],
	"scripts": {
		"test": "jest",
		"build": "rm -rf dist && tsc -p tsconfig.src.json",
		"lint": "eslint .",
		"lint-fix": "npm run lint -- --fix",
		"format": "prettier --write . --no-editorconfig --log-level silent"
	},
	"keywords": [
		"nodejs",
		"typescript",
		"browser",
		"cache",
		"memcache",
		"ttl"
	],
	"author": "m4x1m1l14n",
	"license": "MIT",
	"repository": {
		"type": "git",
		"url": "https://github.com/m4x1m1l14n/cache-js.git"
	},
	"bugs": {
		"url": "https://github.com/m4x1m1l14n/cache-js/issues"
	},
	"homepage": "https://github.com/m4x1m1l14n/cache-js",
	"devDependencies": {
		"@types/detect-node": "^2.0.2",
		"@types/jest": "^29.5.14",
		"@types/node": "^20.17.6",
		"@typescript-eslint/eslint-plugin": "^8.14.0",
		"@typescript-eslint/parser": "^8.14.0",
		"eslint": "^9.14.0",
		"eslint-config-prettier": "^9.1.0",
		"jest": "^29.7.0",
		"prettier": "^3.3.3",
		"ts-jest": "^29.2.5",
		"typescript": "^5.6.3"
	},
	"dependencies": {
		"detect-node": "^2.1.0"
	}
}
