Files
smartnftables/package.json
2026-03-26 10:32:22 +00:00

58 lines
1.4 KiB
JSON

{
"name": "@push.rocks/smartnftables",
"version": "1.0.1",
"private": false,
"description": "A TypeScript module for managing nftables rules including NAT, firewall, and rate limiting with a high-level API.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/**/test*.ts --verbose --timeout 60)",
"build": "(tsbuild tsfolders)",
"format": "(gitzone format)",
"buildDocs": "tsdoc"
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsrun": "^2.0.2",
"@git.zone/tstest": "^3.6.0",
"@types/node": "^25.5.0",
"typescript": "^6.0.2"
},
"dependencies": {
"@push.rocks/smartlog": "^3.2.1",
"@push.rocks/smartpromise": "^4.2.3"
},
"files": [
"ts/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"assets/**/*",
"readme.md",
"changelog.md"
],
"keywords": [
"nftables",
"firewall",
"nat",
"rate limiting",
"network",
"linux",
"packet filter",
"port forwarding",
"ip sets",
"kernel firewall"
],
"homepage": "https://code.foss.global/push.rocks/smartnftables#readme",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartnftables.git"
},
"bugs": {
"url": "https://code.foss.global/push.rocks/smartnftables/issues"
}
}