fluidstate
Version:
Library for fine-grained reactivity state management
48 lines (47 loc) • 1.51 kB
JSON
{
"name": "fluidstate",
"version": "1.0.0",
"description": "Library for fine-grained reactivity state management",
"repository": "https://gitlab.com/fluidstate/fluidstate",
"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"
],
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.7.0",
"babel-jest": "^29.7.0",
"babel-plugin-source-map-support": "^2.2.0",
"jest": "^29.7.0",
"mobx": "^6.13.7",
"prettier": "^2.8.3",
"source-map-support": "^0.5.21",
"typescript": "^5.8.3"
},
"scripts": {
"clean": "rm -rf dist",
"build-types": "tsc --declaration --emitDeclarationOnly --outDir dist && 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": "node --expose-gc $(yarn bin jest)",
"format": "prettier --write ."
}
}