outlogger
Version:
Log outgoing network requests
62 lines (61 loc) • 1.39 kB
JSON
{
"name": "outlogger",
"version": "1.1.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && rollup -c",
"prepublishOnly": "npm run build",
"test": "echo \"No tests yet\" && exit 0"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"keywords": [
"http",
"https",
"fetch",
"logger",
"interceptor",
"request-logger",
"middleware"
],
"author": {
"name": "ramkumar",
"email": "2098ramkumar@gmail.com",
"url": "https://github.com/ramkumar2098"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ramkumar2098/outlogger.git"
},
"bugs": {
"url": "https://github.com/ramkumar2098/outlogger/issues"
},
"homepage": "https://github.com/ramkumar2098/outlogger#readme",
"license": "MIT",
"description": "Log outgoing network requests",
"engines": {
"node": ">=14"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@types/node": "^24.1.0",
"rollup": "^4.45.1",
"rollup-plugin-dts": "^6.2.1",
"typescript": "^5.8.3"
}
}