react-signify
Version:
A JS library for predictable and maintainable global state management
72 lines (71 loc) • 2.56 kB
JSON
{
"name": "react-signify",
"description": "A JS library for predictable and maintainable global state management",
"version": "1.5.8",
"type": "module",
"homepage": "https://reactsignify.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/VietCPQ94/react-signify.git"
},
"bugs": {
"url": "github:VietCPQ94/react-signify/issues"
},
"keywords": [
"react",
"react-signify",
"signal",
"state",
"global state",
"manage state",
"react-signal",
"signals-react",
"re-render"
],
"authors": "Viet Cong Pham Quoc <congphamquocviet@gmail.com> (https://github.com/VietCPQ94)",
"main": "dist/cjs/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"publish": "npm publish --access=public",
"app-start": "yarn --cwd src/app start",
"app-start-ssr": "yarn --cwd src/app-ssr dev",
"app-test": "yarn --cwd src/app test --watchAll",
"build": "rollup -c --bundleConfigAsCjs",
"test": "yarn build && cp -r dist src/app/node_modules/react-signify && rm -rf src/app/node_modules/.cache && yarn app-test",
"start": "yarn build && cp -r dist src/app/node_modules/react-signify && rm -rf src/app/node_modules/.cache && yarn app-start",
"start-ssr": "yarn build && cp -r dist src/app-ssr/node_modules/react-signify && rm -rf src/app-ssr/.next && yarn app-start-ssr",
"prepack": "yarn build"
},
"author": "Viet Cong Pham Quoc",
"license": "MIT",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/cjs/index.cjs"
}
},
"files": [
"dist/*"
],
"devDependencies": {
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/react": "^18.3.2",
"rollup": "^4.17.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"react": ">=17.0.2"
}
}