UNPKG

overmind

Version:
69 lines 1.57 kB
{ "name": "overmind", "version": "28.2.1", "description": "Frictionless state management", "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", "exports": { ".": { "import": { "types": "./lib/index.d.ts", "default": "./es/index.js" }, "require": { "types": "./lib/index.d.ts", "default": "./lib/index.js" } }, "./config": { "import": { "types": "./lib/config/index.d.ts", "default": "./es/config/index.js" }, "require": { "types": "./lib/config/index.d.ts", "default": "./lib/config/index.js" } } }, "scripts": { "build": "tsdown", "prebuild": "rimraf coverage", "test": "jest --runInBand && npm run test:size", "test:watch": "jest --watch --coverage false", "test:size": "size-limit", "typecheck": "tsc --noEmit --skipLibCheck" }, "keywords": [ "state", "sideeffects", "app", "framework" ], "files": [ "lib", "es" ], "dependencies": { "betsy": "1.0.2", "is-plain-obj": "^3.0.0", "proxy-state-tree": "6.3.3", "tslib": "^2.8.1" }, "devDependencies": { "@size-limit/file": "^12.0.0", "babel-loader": "^10.0.0", "size-limit": "^12.0.0", "tsdown": "^0.17.0" }, "size-limit": [ { "path": "./dist/index.iife.min.js", "limit": "11 kB" } ] }