sadbot
Version:
SadBot is a tooling _to thwart_ (someone/"somebot") from accomplishing an action in a given resource, it blocks, throttles and time-restricts the access like a security guard guy when the party is packed or you're not so sober to be welcome.
96 lines (94 loc) • 1.92 kB
JSON
{
"version": "0.1.2",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"keywords": [
"DDoS",
"attack",
"throttling",
"blocking",
"blacklisting",
"time",
"restricted",
"access"
],
"tags": [
"DDoS",
"bot",
"attack",
"throttling",
"blocking",
"blacklisting",
"time",
"restricted"
],
"engines": {
"node": ">=16"
},
"scripts": {
"start": "tsdx watch",
"dev": "node src/index.ts",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "sadbot",
"author": "Shairon Toledo",
"module": "dist/sadbot.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/shairontoledo/sadbot.git"
},
"bugs": {
"url": "https://github.com/shairontoledo/sadbot/issues"
},
"homepage": "http://sadbot.mapreduce.app",
"size-limit": [
{
"path": "dist/sadbot.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/sadbot.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^7.0.8",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^7.0.4",
"size-limit": "^7.0.8",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
},
"dependencies": {
"moment": "^2.29.3",
"redis": "^4.0.0"
}
}