Offload functions to worker threads with shared memory primitives for Node.js.
8
fork

Configure Feed

Select the types of activity you want to include in your feed.

at bcb1bcfd8403fc62f630cbba484186dbce6fb2e2 38 lines 1.1 kB view raw
1{ 2 "name": "moroutine", 3 "version": "0.1.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 "lint": "prettier --check .", 29 "lint:fix": "prettier --write .", 30 "test": "node --experimental-strip-types --test --test-force-exit test/**/*.test.ts" 31 }, 32 "devDependencies": { 33 "@changesets/cli": "^2.30.0", 34 "@types/node": "^25.5.2", 35 "prettier": "^3.8.2", 36 "typescript": "^6.0.2" 37 } 38}