fluidstate-react
Version:
Library for using fine-grained reactivity state management library fluidstate in React
63 lines (62 loc) • 1.95 kB
JSON
{
"name": "fluidstate-react",
"version": "1.0.2",
"description": "Library for using fine-grained reactivity state management library fluidstate in React",
"repository": "https://gitlab.com/fluidstate/fluidstate-react",
"author": "Kirill Shestakov",
"license": "Apache 2.0",
"main": "index.js",
"packageManager": "yarn@3.4.1",
"keywords": [
"state",
"state management",
"fine-grained",
"reactivity",
"reactive",
"reactive programming",
"frp",
"observable",
"data flow",
"react"
],
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.4.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@types/jsdom": "^21.1.7",
"@types/react": "^19.1.6",
"babel-jest": "^29.4.1",
"babel-plugin-minify-replace": "^0.5.0",
"babel-plugin-source-map-support": "^2.2.0",
"fluidstate": "^0.0.21",
"fluidstate-mobx": "^0.0.22",
"jest": "^29.4.1",
"jsdom": "^26.1.0",
"prettier": "^2.8.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"source-map-support": "^0.5.21",
"typescript": "^5.8.3"
},
"peerDependencies": {
"fluidstate": "^0.0.21",
"react": "^19.1.0"
},
"scripts": {
"clean": "rm -rf dist",
"build-types": "tsc --declaration --emitDeclarationOnly --outDir dist --skipLibCheck && rm -rf dist/tests",
"build-source": "babel src -d dist --extensions '.ts,.tsx' --config-file ./babel.config.release.js",
"copy-package-files": "cp package.json dist/ && cp LICENSE dist/ && cp README.md dist/",
"build": "yarn clean && yarn build-source && yarn build-types && yarn copy-package-files",
"pub": "yarn test && yarn build && cd dist && npm publish",
"pub-dry": "yarn test && yarn build && cd dist && npm publish --dry-run",
"test": "jest",
"format": "prettier --write ."
}
}