UNPKG

linked-abort-controller

Version:

Same as AbortController but with sugar for linking outer abort signals

47 lines 1.29 kB
{ "name": "linked-abort-controller", "version": "1.1.1", "description": "", "keywords": [], "author": "js2me", "license": "MIT", "peerDependencies": {}, "dependencies": {}, "type": "module", "devDependencies": { "@types/lodash-es": "4.17.12", "eslint": "8.57.0", "js2me-eslint-config": "1.0.8", "js2me-exports-post-build-script": "^3.0.2", "rimraf": "6.0.1", "typescript": "5.6.2" }, "exports": { ".": { "import": "./index.js", "default": "./index.js", "types": "./index.d.ts" }, "./linked-abort-controller": { "import": "./linked-abort-controller.js", "default": "./linked-abort-controller.js", "types": "./linked-abort-controller.d.ts" }, "./package.json": "./package.json" }, "files": [ "*" ], "main": "./index.js", "typings": "./index.d.ts", "scripts": { "clean": "rimraf dist", "check": "eslint . --fix", "prebuild": "npm run clean && npm run check", "build": "tsc && node ./post-build.mjs", "pub": "PUBLISH=true pnpm run build", "pub:patch": "PUBLISH=true PUBLISH_VERSION=patch pnpm run build", "pub:minor": "PUBLISH=true PUBLISH_VERSION=minor pnpm run build", "pub:major": "PUBLISH=true PUBLISH_VERSION=major pnpm run build" } }