memo/package.json
James Brumond 13a64c0d2d
All checks were successful
Build and test / build-and-test (18.x) (push) Successful in 13s
Build and test / build-and-test (20.x) (push) Successful in 12s
add 3 caching implementations for various use cases
2023-08-26 15:59:05 -07:00

25 lines
579 B
JSON

{
"name": "@js/memo",
"version": "0.1.0",
"description": "In-memory caching/memoization utilities",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"tsc": "tsc --build",
"clean": "rm -rf ./build"
},
"publishConfig": {
"registry": "https://gitea.jbrumond.me/api/packages/js/npm/"
},
"repository": {
"type": "git",
"url": "https://gitea.jbrumond.me/js/memo.git"
},
"author": "James Brumond <https://jbrumond.me>",
"license": "ISC",
"devDependencies": {
"@js/types": "^0.2.1",
"typescript": "^5.1.3"
}
}