gov-detection/package.json
autocommit 255d950236
Some checks failed
Build and Publish / build-and-publish (push) Failing after 48s
deps-upgrade(dependencies): ⬆️ Update all dependencies and devDependencies to newer versions
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-10 06:14:22 -07:00

69 lines
1.6 KiB
JSON

{
"name": "@lilith/gov-detection",
"type": "module",
"version": "1.0.3",
"description": "Government infrastructure detection and blocking: ASN lookup, IP ranges, email domains, with library exceptions",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js"
},
"./patterns": {
"types": "./dist/patterns/index.d.ts",
"import": "./dist/patterns/index.js"
},
"./services": {
"types": "./dist/services/index.d.ts",
"import": "./dist/services/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsup",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src --fix",
"lint:check": "eslint src",
"clean": "rm -rf dist",
"sync-data": "tsx src/data/sync.ts"
},
"dependencies": {
"@lilith/ip-utils": "^1.0.1"
},
"devDependencies": {
"@lilith/configs": "*",
"@types/node": "^22.19.5",
"tsup": "^8.5.1",
"tsx": "^4.19.4",
"typescript": "^5.9.3",
"vitest": "^2.1.9"
},
"keywords": [
"government",
"detection",
"ip-blocking",
"asn",
"security",
"access-control"
],
"author": "Lilith Platform",
"license": "MIT",
"publishConfig": {
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}