@lyleunderwood/filereader-polyfill
Version:
W3C File API specification compliant FileReader polyfill for Node.js environments
60 lines (59 loc) • 1.34 kB
JSON
{
"name": "@lyleunderwood/filereader-polyfill",
"version": "1.0.0",
"description": "W3C File API specification compliant FileReader polyfill for Node.js environments",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.7.0"
},
"scripts": {
"build": "tsc && node build.js",
"test": "vitest",
"test:run": "vitest run",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lyleunderwood/filereader-polyfill.git"
},
"bugs": {
"url": "https://github.com/lyleunderwood/filereader-polyfill/issues"
},
"homepage": "https://github.com/lyleunderwood/filereader-polyfill#readme",
"author": "Lyle Underwood",
"license": "MIT",
"keywords": [
"filereader",
"polyfill",
"nodejs",
"blob",
"file",
"web-api",
"browser-api",
"w3c",
"specification",
"compliant",
"eventtarget",
"streams"
],
"devDependencies": {
"@types/node": "^24.0.7",
"esbuild": "^0.25.5",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}