cache-func
Version:
A tiny utility to cache function outputs easily
41 lines (40 loc) • 863 B
JSON
{
"name": "cache-func",
"version": "1.1.1",
"description": "A tiny utility to cache function outputs easily",
"main": "dist/index.js",
"scripts": {
"dev": "tsx --watch src/index.ts",
"build": "rm -rf dist && tsup src/index.ts --format esm --dts",
"build:watch": "rm -rf dist && tsup src/index.ts --watch --format esm --dts",
"release": "npm run build && npm publish"
},
"files": [
"dist"
],
"keywords": [
"cache",
"function",
"caching",
"memoization",
"memoize",
"cache function",
"cache function result"
],
"author": "LacheRo`",
"license": "MIT",
"type": "module",
"devDependencies": {
"@types/node": "^22.13.8",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lacherogwu/cache-func"
}
}