UNPKG

@on-the-ground/daemonizer

Version:

A minimal async control flow framework for browser and Node.js daemons.

61 lines (60 loc) 1.47 kB
{ "name": "@on-the-ground/daemonizer", "version": "0.0.14", "description": "A minimal async control flow framework for browser and Node.js daemons.", "keywords": [ "daemon", "actor", "async", "event-loop", "task-group", "browser", "nodejs" ], "author": "Joohyung Park <joohyung-park@on-the-ground.org>", "license": "MIT", "files": [ "dist/index.mjs", "dist/index.cjs", "dist/index.d.ts", "dist/abort.d.ts", "dist/bounded_queue.d.ts", "dist/event_loop.d.ts", "dist/daemon.d.ts", "dist/macro_task_yielder.d.ts", "dist/task_group.d.ts" ], "main": "dist/index.cjs", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { "import": "./dist/index.mjs", "require": "./dist/index.cjs" }, "scripts": { "build": "rollup -c", "clean": "rm -rf dist", "test": "vitest run", "prepublishOnly": "yarn build && yarn test" }, "dependencies": { "tslib": "^2.8.1" }, "devDependencies": { "@rollup/plugin-commonjs": "^28.0.6", "@rollup/plugin-node-resolve": "^16.0.1", "@rollup/plugin-typescript": "^12.1.2", "prettier": "^3.5.3", "rollup": "^4.43.0", "rollup-plugin-dts": "^6.2.1", "typescript": "^5.8.3", "vitest": "^3.2.3" }, "repository": { "type": "git", "url": "https://github.com/on-the-ground/daemonizer" }, "bugs": { "url": "https://github.com/on-the-ground/daemonizer/issues" } }