neant
Version:
The simplest React state management library - direct mutations, direct destructuring, automatic fine-grained reactivity
50 lines (49 loc) • 1.12 kB
JSON
{
"name": "neant",
"version": "1.0.0",
"description": "The simplest React state management library - direct mutations, direct destructuring, automatic fine-grained reactivity",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"type-check": "tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build",
"publish:npm": "npm publish",
"publish:beta": "npm publish --tag beta"
},
"keywords": [
"react",
"state-management",
"zustand",
"typescript",
"immer",
"fine-grained"
],
"author": "",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0"
},
"dependencies": {
"immer": "^10.1.1"
},
"devDependencies": {
"@types/react": "^18.2.45",
"react": "^18.2.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}