Offload functions to worker threads with shared memory primitives for Node.js.
at main 39 lines 1.0 kB view raw
1{ 2 "name": "moroutine", 3 "version": "1.0.0", 4 "repository": { 5 "type": "git", 6 "url": "git@tangled.org:divy.zone/moroutine" 7 }, 8 "homepage": "https://tangled.org/divy.zone/moroutine", 9 "license": "MIT", 10 "type": "module", 11 "exports": "./src/index.ts", 12 "publishConfig": { 13 "exports": { 14 ".": { 15 "types": "./dist/index.d.ts", 16 "default": "./dist/index.js" 17 } 18 } 19 }, 20 "files": [ 21 "dist" 22 ], 23 "packageManager": "pnpm@10.33.0", 24 "scripts": { 25 "build": "tsc -p tsconfig.build.json", 26 "changeset": "changeset", 27 "release": "changeset version && changeset tag && git add -A && git commit -m \"chore: version $(node -p \"require('./package.json').version\")\" && git push --follow-tags", 28 "types": "tsc", 29 "lint": "prettier --check .", 30 "lint:fix": "prettier --write .", 31 "test": "node --test 'test/**/*.test.ts'" 32 }, 33 "devDependencies": { 34 "@changesets/cli": "^2.30.0", 35 "@types/node": "^25.5.2", 36 "prettier": "^3.8.2", 37 "typescript": "^6.0.2" 38 } 39}