{
	"name": "@opi_pib/node-utility",
	"version": "3.0.3",
	"description": "Node utility",
	"main": "dist/cjs/index.js",
	"module": "dist/esm/index.js",
	"types": "dist/types/index.d.ts",
	"exports": {
		".": {
			"types": "./dist/types/index.d.ts",
			"import": "./dist/esm/index.js",
			"require": "./dist/cjs/index.js"
		}
	},
	"scripts": {
		"prepare": "husky",
		"clean": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\"",
		"build:cjs": "tsc --module CommonJS --outDir dist/cjs",
		"build:esm": "tsc --module ESNext --outDir dist/esm --declaration true --declarationDir dist/types",
		"build": "npm run clean && npm run build:cjs && npm run build:esm",
		"test": "tsx --test src/**/*.spec.ts"
	},
	"sideEffects": false,
	"files": [
		"dist",
		"LICENSE",
		"README.md"
	],
	"lint-staged": {
		"*.{js,mjs,ts}": "eslint --fix",
		"*": "prettier -u -w"
	},
	"prettier": "@opi_pib/prettier-config-base",
	"keywords": [
		"node utility",
		"node notify",
		"node http helpers"
	],
	"author": "Dawid Lubowiecki",
	"license": "MIT",
	"engines": {
		"node": ">=24.0.0",
		"npm": ">=10.8.0"
	},
	"dependencies": {
		"@opi_pib/ts-utility": "^2.0.0",
		"@types/express": "^4.0.0",
		"@types/http-proxy": "^1.0.0",
		"@types/qs": "^6.0.0",
		"express": "^5.0.0",
		"http-proxy": "^1.0.0",
		"http-proxy-middleware": "^2.0.0",
		"qs": "^6.0.0"
	},
	"devDependencies": {
		"@opi_pib/eslint-config-base": "^9.0.0",
		"@opi_pib/prettier-config-base": "^1.0.0",
		"husky": "^9.0.0",
		"lint-staged": "^16.0.0",
		"tsx": "^4.0.0",
		"typescript": "^5.0.0"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/OPI-PIB/node-utility.git"
	}
}
