exstack
Version:
A utility library designed to simplify and enhance Express.js applications.
82 lines (81 loc) • 2.06 kB
JSON
{
"name": "exstack",
"version": "0.1.1",
"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 && tsup ./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",
"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.22.0",
"@types/express": "^5.0.0",
"@types/node": "^22.13.10",
"eslint": "^9.22.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"tsup": "^8.4.0",
"typescript": "~5.5.4",
"typescript-eslint": "^8.26.1",
"vitest": "^3.0.9"
},
"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"
],
"lint-staged": {
"./{src,test}/**/*.ts": [
"bun run format",
"bun run lint"
],
"*.md": "prettier --list-different"
},
"packageManager": "bun@1.2.2",
"engines": {
"node": ">=22.13.1"
}
}