57 lines
1.3 KiB
JSON
57 lines
1.3 KiB
JSON
{
|
|
"name": "@silentsilas/crawl-me-not",
|
|
"version": "1.0.0",
|
|
"description": "Detect and block AI crawlers and SEO crawlers from any web server or framework",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"lint": "eslint src/**/*.ts",
|
|
"lint:fix": "eslint src/**/*.ts --fix",
|
|
"test": "jest",
|
|
"prepublishOnly": "npm run build",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"keywords": [
|
|
"crawler",
|
|
"bot",
|
|
"ai",
|
|
"seo",
|
|
"middleware",
|
|
"robots",
|
|
"scraping",
|
|
"protection",
|
|
"user-agent",
|
|
"detection",
|
|
"framework-agnostic"
|
|
],
|
|
"author": "Silas",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@git.silentsilas.com:silentsilas/crawl-me-not.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://git.silentsilas.com/silentsilas/crawl-me-not/issues"
|
|
},
|
|
"homepage": "https://git.silentsilas.com/silentsilas/crawl-me-not#readme",
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.8",
|
|
"@types/node": "^20.9.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.12.0",
|
|
"@typescript-eslint/parser": "^6.12.0",
|
|
"eslint": "^8.54.0",
|
|
"jest": "^29.7.0",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
}
|
|
} |