nucleux
Version:
Simple, atomic hub for all your React application's state management needs. No providers, no boilerplate, just state that works.
94 lines (93 loc) • 2.24 kB
JSON
{
"name": "nucleux",
"version": "1.3.0",
"description": "Simple, atomic hub for all your React application's state management needs. No providers, no boilerplate, just state that works.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/martyroque/nucleux.git"
},
"engines": {
"node": ">=14"
},
"files": [
"dist/",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"prepare": "tsc",
"build": "tsc",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "jest"
},
"keywords": [
"react",
"state-management",
"atomic",
"hooks",
"typescript",
"redux-alternative",
"zustand-alternative",
"no-providers",
"boilerplate-free",
"reactive",
"persistence",
"react-native",
"dependency-injection",
"framework-agnostic",
"store"
],
"author": "Marty Roque",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.5.14",
"@types/node": "^14.18.63",
"@types/react": "^18.3.20",
"@types/use-sync-external-store": "0.0.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-jest": "^26.9.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-jest": "^29.3.0",
"typescript": "^4.9.5",
"use-sync-external-store": "^1.5.0"
},
"dependencies": {
"auto-bind": "^5.0.1",
"fast-deep-equal": "^3.1.3",
"nanoid": "^3.3.11"
},
"peerDependencies": {
"react": ">=16.9",
"react-native-get-random-values": ">=1.8.0",
"use-sync-external-store": ">=1.2.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-native-get-random-values": {
"optional": true
},
"use-sync-external-store": {
"optional": true
}
}
}