@ort-fe/storage-cache-kit
Version:
Unified client-side cache and storage manager with expiration control
76 lines (75 loc) • 1.91 kB
JSON
{
"name": "@ort-fe/storage-cache-kit",
"version": "1.1.4",
"description": "Unified client-side cache and storage manager with expiration control",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.umd.js",
"jsdelivr": "dist/index.umd.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/index.umd.js",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src --ext ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"storage",
"localStorage",
"sessionStorage",
"cookie",
"memory-storage",
"browser-storage",
"cache",
"expiration",
"typescript",
"async",
"encryption",
"namespace"
],
"author": "hopebearer",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hopebearer/storage-cache-kit.git"
},
"bugs": {
"url": "https://github.com/hopebearer/storage-cache-kit/issues"
},
"homepage": "https://github.com/hopebearer/storage-cache-kit#readme",
"devDependencies": {
"typescript": "~5.8.3",
"vite": "^6.3.5",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"prettier": "^3.2.0",
"vitest": "^1.2.0",
"@types/node": "^20.0.0"
},
"peerDependencies": {},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}