{ "name": "@torahanytime/fsm", "version": "0.0.18", "author": "Avraham Sakal ", "license": "MIT", "main": "./dist/index.js", "type": "module", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./react": { "types": "./dist/react/index.d.ts", "import": "./dist/react/index.js" }, "./preact": { "types": "./dist/preact/index.d.ts", "import": "./dist/preact/index.js" } }, "scripts": { "build": "node build.mjs", "build-types": "tsc", "build-and-publish": "yarn build && yarn build-types && git commit -a -m 'update dist' && yarn publish", "build-tests": "esbuild --bundle --outdir=dist/tests src/tests/*.ts" }, "devDependencies": { "@types/node": "^20.1.4", "esbuild": "^0.17.18", "typescript": "^5.0.4" }, "peerDependencies": { "preact": "^10.14.1", "react": "^18.2.0" } }