UNPKG

esbuild-plugin-polyfill-node

Version:

ESBuild plugin for polyfilling Node.js builtins for edge and Deno

56 lines 1.5 kB
{ "name": "esbuild-plugin-polyfill-node", "version": "0.3.0", "description": "ESBuild plugin for polyfilling Node.js builtins for edge and Deno", "type": "module", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "sideEffects": false, "types": "./dist/index.d.ts", "files": [ "dist", "polyfills" ], "peerDependencies": { "esbuild": "*" }, "devDependencies": { "@cyco130/eslint-config": "^3.0.2", "@types/node": "20.2.5", "esbuild": "^0.17.19", "eslint": "^8.41.0", "prettier": "^2.8.8", "rimraf": "^5.0.1", "tsup": "^6.7.0", "typescript": "^5.0.4" }, "repository": { "type": "git", "url": "git+https://github.com/cyco130/esbuild-plugin-polyfill-node.git" }, "keywords": [ "esbuild-plugin", "node-polyfill", "deno", "edge" ], "author": "Fatih Aygün <cyco130@gmail.com>", "license": "MIT", "dependencies": { "@jspm/core": "^2.0.1", "import-meta-resolve": "^3.0.0" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "test": "pnpm run test:typecheck && pnpm run test:lint && pnpm run test:prettier", "test:typecheck": "tsc -p tsconfig.json --noEmit", "test:lint": "eslint src --max-warnings 0", "test:prettier": "prettier --check --ignore-path .gitignore --ignore-unknown . '!pnpm-lock.yaml'", "format": "prettier . --write --ignore-path .gitignore --ignore-unknown . '!pnpm-lock.yaml'" } }