state-event-target
Version:
Primary state with event-driven replicas.
61 lines (60 loc) • 1.35 kB
JSON
{
"name": "state-event-target",
"version": "0.0.7",
"description": "Primary state with event-driven replicas.",
"author": "Seb Insua",
"license": "MIT",
"repository": "sebinsua/state-event-target",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.mjs",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/es/index.d.mts",
"default": "./dist/es/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"engines": {
"node": ">=20"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "bunchee",
"dev": "TZ=UTC vitest",
"test": "TZ=UTC vitest run",
"coverage": "TZ=UTC vitest run --coverage",
"check": "npm run check:types && npm run check:lint",
"check:lint": "biome check .",
"check:types": "tsc --noEmit"
},
"keywords": [
"state",
"event",
"target",
"distributed",
"kv",
"synchronous",
"asynchronous",
"emitter",
"replicas"
],
"devDependencies": {
"@vitest/coverage-v8": "^3.0.0",
"biome": "^0.3.3",
"bunchee": "^6.3.0",
"happy-dom": "^17.1.0",
"prettier": "^3.5.1",
"typescript": "^5.7.0",
"vitest": "^3.0.0",
"swr-cache-event-target": "^0.0.7"
}
}