exstack
Version:
A utility library designed to simplify and enhance Express.js applications.
76 lines (75 loc) • 1.99 kB
JSON
{
"name": "exstack",
"version": "0.1.4",
"author": "Aashish Panchal <aipanchal51@gmail.com>",
"description": "A utility library designed to simplify and enhance Express.js applications.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"type": "commonjs",
"files": [
"dist"
],
"scripts": {
"build": "bun remove-dist && tsdown ./src/index.ts --format esm,cjs --dts",
"lint": "eslint \"./{src,test}/**/*.{ts,js}\" --fix",
"test": "vitest run && vitest --typecheck --run --passWithNoTests",
"format": "prettier --write \"./{src,test}/**/*.{ts,js}\"",
"release": "bun run build && npm publish",
"pre-commit": "bun run format && bun run lint && bun run test",
"check-types": "tsc --noEmit",
"remove-dist": "rimraf dist",
"prepare": "husky"
},
"license": "MIT",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/express": "^5.0.2",
"@types/node": "^22.15.29",
"eslint": "^9.28.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.4.1",
"globals": "^16.2.0",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"tsdown": "^0.12.5",
"typescript": "~5.5.4",
"typescript-eslint": "^8.33.0",
"vitest": "^3.1.4"
},
"peerDependencies": {
"express": "^4.21.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aashishpanchal/exstack.git"
},
"homepage": "https://github.com/aashishpanchal/exstack#readme",
"keywords": [
"proxy",
"express",
"exstack",
"handler",
"utility",
"http-status",
"http-errors",
"async-handler"
],
"packageManager": "bun@1.2.2",
"engines": {
"node": ">=22.13.1"
}
}