@mobx-sentinel/core
Version:
A TypeScript library for non-intrusive model enhancement in MobX applications. Provides model change detection, validation, and form integration capabilities while maintaining the purity of domain models.
45 lines • 1.15 kB
JSON
{
"name": "@mobx-sentinel/core",
"description": "A TypeScript library for non-intrusive model enhancement in MobX applications. Provides model change detection, validation, and form integration capabilities while maintaining the purity of domain models.",
"version": "0.2.3",
"author": "creasty <yuki@creasty.com>",
"license": "MIT",
"homepage": "https://github.com/creasty/mobx-sentinel",
"repository": {
"type": "git",
"url": "git+https://github.com/creasty/mobx-sentinel.git"
},
"bugs": {
"url": "https://github.com/creasty/mobx-sentinel/issues"
},
"keywords": [
"mobx",
"model",
"change-detection",
"validation",
"form",
"react"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"mobx": "^6.12.3",
"uuid": "^11.0.4"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"tsup": "^8.3.5",
"typescript": "^5.5.0",
"vitest": "^2.1.8"
},
"scripts": {
"test": "vitest run --coverage",
"test:dev": "vitest",
"build": "tsup"
}
}