jotai-effect
Version:
101 lines (100 loc) • 2.75 kB
JSON
{
"name": "jotai-effect",
"description": "👻🔁",
"version": "2.0.4",
"type": "module",
"author": "David Maskasky",
"contributors": [
"Daishi Kato (https://github.com/dai-shi)"
],
"repository": {
"type": "git",
"url": "https://github.com/jotaijs/jotai-effect.git"
},
"bugs": {
"url": "https://github.com/jotaijs/jotai-effect/issues"
},
"homepage": "https://jotai.org/docs/extensions/effect",
"source": "./src/index.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
},
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"sideEffects": false,
"files": [
"src",
"dist"
],
"packageManager": "pnpm@9.15.0",
"scripts": {
"compile": "rm -rf dist && pnpm run '/^compile:.*/'",
"compile:esm": "tsc -p tsconfig.esm.json && tsc-alias -p tsconfig.esm.json",
"compile:cjs": "tsc -p tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
"fix": "pnpm run '/^fix:.*/'",
"fix:format": "prettier --write .",
"fix:lint": "eslint --config ./eslint.config.ts --fix .",
"pretest": "pnpm compile",
"test": "pnpm run \"/^test:.*/\"",
"test:format": "prettier --list-different .",
"test:types": "tsc --noEmit",
"test:lint": "eslint .",
"test:spec": "vitest run"
},
"keywords": [
"jotai",
"react",
"effect",
"state"
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@testing-library/dom": "10.0.0",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"happy-dom": "^15.11.7",
"jiti": "^2.4.2",
"jotai": "2.12.5",
"jotai-effect": "link:",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-error-boundary": "^4.0.11",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.2",
"typescript-eslint": "^8.21.0",
"vite": "^6.0.11",
"vitest": "^3.0.3"
},
"peerDependencies": {
"jotai": ">=2.12.1"
},
"engines": {
"node": ">=12.20.0"
}
}