UNPKG

esbuild-plugin-extract-helpers

Version:

Esbuild plugin to extract cjs helpers (like tslib)

59 lines (58 loc) 1.57 kB
{ "name": "esbuild-plugin-extract-helpers", "version": "0.0.6", "description": "Esbuild plugin to extract cjs helpers (like tslib)", "type": "module", "main": "target/cjs/index.cjs", "exports": { ".": { "types": "./target/dts/index.d.ts", "require": "./target/cjs/index.cjs", "import": "./target/esm/index.mjs", "default": "./target/esm/index.mjs" } }, "module": "target/esm/index.mjs", "types": "target/dts/index.d.ts", "files": [ "target/cjs", "target/esm", "target/dts", "target/coverage/lcov.info" ], "scripts": { "build": "concurrently 'npm:build:*'", "build:js": "yarn build:esbuild", "build:dts": "yarn build:tsc", "build:docs": "yarn build:typedoc", "test": "concurrently 'npm:test:*'", "test:lint": "yarn test:eslint", "test:unit": "yarn test:c8", "test:it": "yarn run:void", "publish:draft": "yarn build && npm publish --no-git-tag-version --tag draft" }, "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/antongolub/misc.git" }, "author": "Anton Golub <antongolub@antongolub.com>", "license": "MIT", "bugs": { "url": "https://github.com/antongolub/misc/issues" }, "homepage": "https://github.com/antongolub/misc#readme", "dependencies": { "esbuild-plugin-utils": "0.1.0" }, "peerDependencies": { "esbuild": ">=0.19.0" }, "devDependencies": { "@antongolub/infra": "workspace:*", "@types/node": "^20.12.12", "esbuild": ">=0.19.0" } }