UNPKG

@flopflip/memory-adapter

Version:

An in memory adapter for flipflop

65 lines 1.43 kB
{ "name": "@flopflip/memory-adapter", "version": "15.0.0", "description": "An in memory adapter for flipflop", "sideEffects": false, "type": "module", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "main": "./dist/index.js", "typesVersions": { "*": { ".": [ "dist/*.d.ts", "dist/*.d.cts" ] } }, "files": [ "readme.md", "dist/**" ], "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "https://github.com/tdeekens/flopflip.git", "directory": "packages/memory-adapter" }, "author": "Tobias Deekens <nerd@tdeekens.name>", "license": "MIT", "bugs": { "url": "https://github.com/tdeekens/flopflip/issues" }, "homepage": "https://github.com/tdeekens/flopflip#readme", "keywords": [ "feature-flags", "feature-toggles", "memory", "client" ], "dependencies": { "@babel/runtime": "7.26.9", "mitt": "3.0.1", "tiny-warning": "1.0.3", "@flopflip/adapter-utilities": "15.0.0", "@flopflip/types": "15.0.0" }, "devDependencies": { "globalthis": "1.0.4", "tsup": "8.4.0", "@flopflip/tsconfig": "15.0.0" }, "scripts": { "build": "rimraf dist && tsup", "check-types": "tsc --noEmit", "test": "vitest --run", "test:watch": "vitest", "dev": "tsup --watch --clean=false" } }