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