monarc
Version:
MONARC's Obviously Not A Redux Clone
87 lines (86 loc) • 1.95 kB
JSON
{
"name": "monarc",
"version": "3.3.1",
"description": "MONARC's Obviously Not A Redux Clone",
"author": "Matteo Cavalleri",
"homepage": "https://cvlmtg.github.io/monarc/",
"repository": {
"url": "git+https://github.com/cvlmtg/monarc.git",
"type": "git"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/monarc.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"analyze": "size-limit --why",
"build": "dts build --rollupTypes",
"clean": "rm -rf dist",
"lint": "dts lint src/ test/",
"prepare": "dts build --rollupTypes",
"size": "size-limit",
"start": "dts watch",
"test": "dts test --passWithNoTests"
},
"keywords": [
"react",
"context",
"store",
"hooks",
"autosave",
"undo",
"redo",
"reducer",
"state",
"functional",
"immutable",
"flux",
"redux"
],
"jest": {
"testEnvironment": "jsdom"
},
"engines": {
"node": ">=12"
},
"peerDependencies": {
"react": ">=17"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^7.0.5",
"@tsconfig/create-react-app": "^1.0.2",
"@tsconfig/recommended": "^1.0.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jsan": "^3.1.2",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"dts-cli": "^1.1.4",
"husky": "^7.0.4",
"immutable": "^4.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"redux-devtools-extension": "^2.13.9",
"size-limit": "^7.0.5",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"dependencies": {
"@redux-devtools/serialize": "^0.3.1",
"jsan": "^3.1.14",
"tiny-invariant": "^1.2.0"
},
"size-limit": [
{
"path": "dist/monarc.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/monarc.esm.js",
"limit": "10 KB"
}
]
}