UNPKG

@medamajs/medama

Version:

A minimalist, powerful, and dependency-free reactive state management library for TypeScript and JavaScript applications.

54 lines (53 loc) 1.4 kB
{ "name": "@medamajs/medama", "version": "0.0.9", "private": false, "description": "A minimalist, powerful, and dependency-free reactive state management library for TypeScript and JavaScript applications.", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/types/index.d.ts", "directories": { "src": "./src", "dist": "./dist" }, "exports": { ".": { "require": "./dist/cjs/index.js", "import": "./dist/esm/index.js", "types": "./dist/types/index.d.ts" }, "./package.json": "./package.json" }, "scripts": { "test": "jest", "lint": "eslint", "clean": "rimraf ./dist", "build:esm": "tsc --build tsconfig.esm.json", "build:cjs": "tsc --build tsconfig.cjs.json", "build": "npm run clean && npm run build:cjs && npm run build:esm", "preversion": "npm run lint && npm run build && npm test" }, "publishConfig": { "access": "public" }, "keywords": [ "state-management", "reactive", "typescript", "javascript", "dependency-free", "lightweight", "performant", "selectors", "subscriptions", "memoization", "garbage-collectible", "universal" ], "author": "Andy Kovalev", "homepage": "https://github.com/turtleflyer/medama/tree/master/packages/medama#readme", "license": "MIT", "dependencies": { "medama": "0.0.9" } }