Files
notification-elements-demo/node_modules/weak-lru-cache/package.json
Giuliano Silvestro 5d0c9ec7eb Initial commit: notification-elements-demo app
Interactive Angular 19 demo for @sda/notification-elements-ui with
6 sections: Bell & Feed, Notification Center, Inbox, Comments &
Threads, Mention Input, and Full-Featured layout. Includes mock
data, dark mode toggle, and real-time event log.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 21:49:19 +10:00

44 lines
921 B
JSON

{
"name": "weak-lru-cache",
"author": "Kris Zyp",
"version": "1.2.2",
"description": "An LRU cache of weak references",
"license": "MIT",
"types": "./index.d.ts",
"keywords": [
"cache",
"weak",
"references",
"LRU",
"LRFU"
],
"repository": {
"type": "git",
"url": "http://github.com/kriszyp/weak-lru-cache"
},
"type": "module",
"main": "dist/index.cjs",
"module": "index.js",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./index.js"
},
"./index.js": {
"require": "./dist/index.cjs",
"import": "./index.js"
}
},
"scripts": {
"build": "rollup -c",
"prepare": "rollup -c",
"test": "./node_modules/.bin/mocha tests/test*.js -u tdd"
},
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4",
"mocha": "^8",
"rollup": "^1.20.3"
}
}