overmind-react
Version:
Functional actions
44 lines • 1.17 kB
JSON
{
"name": "overmind-react",
"version": "29.2.1",
"description": "Functional actions",
"author": "Christian Alfoni <christianalfoni@gmail.com>",
"license": "MIT",
"repository": "git+https://github.com/cerebral/overmind.git",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run build:lib & npm run build:es",
"build:lib": "tsc --outDir lib --module commonjs",
"build:es": "tsc --outDir es --module ES2022 --target ES2022",
"clean": "rimraf es lib coverage",
"typecheck": "tsc --noEmit --skipLibCheck",
"test": "jest --runInBand",
"test:watch": "jest --watch --updateSnapshot --coverage false",
"prebuild": "npm run clean",
"postbuild": "rimraf {lib,es}/**/__tests__"
},
"keywords": [
"state",
"sideeffects",
"app",
"framework"
],
"files": [
"lib",
"es"
],
"dependencies": {
"overmind": "28.2.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0"
},
"peerDependencies": {
"react": "*"
}
}