@shtse8/fluxus
Version:
A functional, reactive state management library for TypeScript inspired by Riverpod.
64 lines (62 loc) • 1.47 kB
JSON
{
"name": "@shtse8/fluxus",
"version": "1.0.0",
"description": "A functional, reactive state management library for TypeScript inspired by Riverpod.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./react-adapter": {
"import": "./dist/react-adapter/index.mjs",
"require": "./dist/react-adapter/index.js",
"types": "./dist/react-adapter/index.d.ts"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"keywords": [
"state management",
"react",
"typescript",
"functional",
"reactive",
"fluxus",
"riverpod"
],
"repository": {
"type": "git",
"url": "git+https://github.com/shtse8/fluxus.git"
},
"homepage": "https://github.com/shtse8/fluxus#readme",
"bugs": {
"url": "https://github.com/shtse8/fluxus/issues"
},
"author": "shtse8",
"license": "ISC",
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/react": "^19.0.12",
"jsdom": "^26.0.0",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vitest": "^3.1.1"
},
"peerDependencies": {
"react": "^19.1.0"
}
}