overmind-react
Version:
Functional actions
45 lines • 1.18 kB
JSON
{
"name": "overmind-react",
"version": "29.0.5",
"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 ES2020 --target ES2020",
"clean": "rimraf es lib coverage",
"typecheck": "tsc --noEmit",
"test": "jest --runInBand",
"test:watch": "jest --watch --updateSnapshot --coverage false",
"prebuild": "npm run clean",
"postbuild": "rimraf {lib,es}/**/__tests__",
"posttest": "npm run typecheck"
},
"keywords": [
"state",
"sideeffects",
"app",
"framework"
],
"files": [
"lib",
"es"
],
"dependencies": {
"overmind": "28.0.3",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/node": "^20.6.1",
"@testing-library/jest-dom": "6.1.3",
"@testing-library/react": "^14.0.0"
},
"peerDependencies": {
"react": "*"
}
}