UNPKG

postnl-sdk

Version:

Unofficial PostNL SDK for Node.js inspired by Resend

49 lines (48 loc) 1.1 kB
{ "name": "postnl-sdk", "version": "0.3.0", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "files": [ "dist/**" ], "scripts": { "build": "tsup src/index.ts --format esm,cjs --dts", "test": "jest", "test:watch": "jest --watch", "prepublishOnly": "npm run build" }, "engines": { "node": ">=18" }, "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } } }, "homepage": "https://github.com/TimmyGuy/postnl-sdk-nodejs#readme", "keywords": [ "postnl", "postnl-sdk" ], "author": "Tim Ohlsen", "license": "MIT", "description": "Unofficial PostNL SDK for Node.js inspired by Resend", "devDependencies": { "@types/jest": "^29.5.12", "@types/node": "18.19.34", "@types/react": "18.3.3", "jest": "^29.7.0", "ts-jest": "^29.2.4", "ts-node": "^10.9.2", "tsup": "7.2.0", "typescript": "^5.5.3" } }