UNPKG

@figmarine/cache

Version:

Library to cache arbitrary data to disk for arbitrarily long

69 lines 1.91 kB
{ "name": "@figmarine/cache", "version": "1.0.3", "license": "MIT", "type": "module", "description": "Library to cache arbitrary data to disk for arbitrarily long", "repository": { "type": "git", "url": "https://github.com/Sidnioulz/figmarine", "directory": "packages/cache" }, "bugs": { "url": "https://github.com/Sidnioulz/figmarine/issues" }, "keywords": [ "figmarine", "cache" ], "publishConfig": { "access": "public" }, "author": "Steve Dodier-Lazaro", "homepage": "https://github.com/Sidnioulz/figmarine", "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist/**" ], "devDependencies": { "@faker-js/faker": "^9.1.0", "@types/node": "^22.8.1", "@vitest/coverage-istanbul": "^2.1.3", "@vitest/coverage-v8": "^2.1.3", "lint-staged": "^15.2.10", "lockfile": "^1.0.4", "memfs": "^4.14.0", "tsc-watch": "^6.2.0", "tsup": "^8.3.5", "typescript": "latest", "vite": "^5.4.10", "vitest": "^2.1.3", "@figmarine/config-eslint": "0.0.0", "@figmarine/config-prettier": "0.0.0", "@figmarine/config-tsup": "0.0.0", "@figmarine/config-typescript": "0.0.0", "@figmarine/config-vitest": "0.0.0" }, "dependencies": { "@figmarine/logger": "1.0.2", "@keyv/compress-gzip": "^2.0.2", "cacheable": "^1.8.2", "keyv": "^5.1.2", "keyv-file": "^5.0.3" }, "scripts": { "build": "tsc && tsup --env.NODE_ENV production", "clean": "rm '/tmp/@figmarine' -rf", "dev": "tsc-watch --onSuccess \"tsup --env.NODE_ENV production\"", "lint": "eslint .", "lint:files": "eslint --", "lint:fix": "eslint . --fix", "lint:staged": "lint-staged", "test": "vitest run", "test:changed": "vitest run --changed HEAD~1", "test:coverage": "vitest --coverage run", "test:dev": "vitest dev", "typecheck": "tsc --noEmit" } }