Files
smartradius/package.json

51 lines
1.1 KiB
JSON
Raw Normal View History

2026-02-01 15:44:22 +00:00
{
"name": "@push.rocks/smartradius",
2026-02-01 17:40:36 +00:00
"version": "1.1.0",
2026-02-01 15:44:22 +00:00
"private": false,
"description": "A RADIUS server and client implementation for Node.js with full RFC 2865/2866 compliance",
2026-02-01 15:44:22 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --verbose --logfile --timeout 60)",
"build": "(tsbuild tsfolders --allowimplicitany)",
2026-02-01 15:44:22 +00:00
"buildDocs": "(tsdoc)"
},
"devDependencies": {
"@git.zone/tsbuild": "^4.1.2",
"@git.zone/tsrun": "^2.0.1",
"@git.zone/tstest": "^3.1.8",
"@types/node": "^25.2.0"
2026-02-01 15:44:22 +00:00
},
"dependencies": {
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartpromise": "^4.2.3"
},
"files": [
"ts/**/*",
"ts_shared/**/*",
"ts_server/**/*",
"ts_client/**/*",
"dist_ts/**/*",
"dist_ts_shared/**/*",
"dist_ts_server/**/*",
"dist_ts_client/**/*",
"readme.md"
],
"keywords": [
"radius",
"authentication",
"accounting",
"aaa",
"pap",
"chap",
"rfc2865",
"rfc2866",
"network",
"server",
"client"
]
2026-02-01 15:44:22 +00:00
}