UNPKG

z-secure-service

Version:

A rate-limiting and API protection middleware that helps developers add security features to their APIs effortlessly.

57 lines (56 loc) 1.39 kB
{ "name": "z-secure-service", "version": "1.3.5", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc && mv dist/* ./ && rmdir dist", "start": "node dist/index.js", "dev": "nodemon --watch src --exec ts-node src/index.ts", "test": "jest" }, "type": "module", "files": [ "LICENSE", "README.md", "*.js", "*.d.ts", "!*.config.js" ], "keywords": [ "rate-limiting", "api-protection", "shielding", "npm-package", "security", "middleware" ], "author": "Shashank", "license": "ISC", "description": "A rate-limiting and API protection middleware that helps developers add security features to their APIs effortlessly.", "homepage": "https://github.com/LEVIII007/z-secure-SDK.git", "repository": { "type": "git", "url": "https://github.com/LEVIII007/z-secure-SDK.git" }, "bugs": { "url": "https://github.com/LEVIII007/z-secure-SDK.git/issues" }, "dependencies": { "axios": "^1.7.9", "request-ip": "^3.3.0" }, "devDependencies": { "@types/node": "^22.10.2", "@types/request-ip": "^0.0.41", "@typescript-eslint/eslint-plugin": "^8.18.1", "@typescript-eslint/parser": "^8.18.1", "eslint": "^9.17.0", "nodemon": "^3.1.9", "ts-node": "^10.9.2", "typescript": "^5.7.2" }, "publishConfig": { "access": "public" } }