@reatom/core
Version:
The ultimate state manager
61 lines (60 loc) • 1.31 kB
JSON
{
"name": "@reatom/core",
"version": "3.10.1",
"private": false,
"description": "The ultimate state manager",
"source": "src/index.ts",
"exports": {
"types": "./build/index.d.ts",
"require": "./build/index.js",
"default": "./build/index.mjs"
},
"main": "build/index.js",
"module": "build/index.mjs",
"types": "build/index.d.ts",
"sideEffects": false,
"browserslist": [
"last 1 year"
],
"minify": {
"mangle": false
},
"scripts": {
"prepublishOnly": "npm run build && npm run test",
"build": "microbundle -f esm,cjs --raw=true",
"test": "ts-node src/atom.test.ts",
"test:watch": "tsx watch src/atom.test.ts",
"bench": "ts-node src/index.bench.test.ts"
},
"author": "artalar",
"contributors": [
{
"name": "artalar",
"url": "https://github.com/artalar"
}
],
"license": "MIT",
"readme": "README.md",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/artalar/reatom.git"
},
"bugs": {
"url": "https://github.com/artalar/reatom/issues"
},
"homepage": "https://www.reatom.dev/package/core",
"keywords": [
"state",
"store",
"flux",
"atom",
"reactive",
"reactivity",
"state-manager",
"reatom"
],
"files": [
"/package.json",
"/build"
]
}