feat(smartradius): Implement full RADIUS server and client with RFC 2865/2866 compliance, including packet handling, authenticators, attributes, secrets manager, client APIs, and comprehensive tests and documentation
This commit is contained in:
41
package.json
41
package.json
@@ -2,7 +2,7 @@
|
||||
"name": "@push.rocks/smartradius",
|
||||
"version": "1.0.1",
|
||||
"private": false,
|
||||
"description": "a radius server implementation",
|
||||
"description": "A RADIUS server and client implementation for Node.js with full RFC 2865/2866 compliance",
|
||||
"main": "dist_ts/index.js",
|
||||
"typings": "dist_ts/index.d.ts",
|
||||
"type": "module",
|
||||
@@ -10,16 +10,41 @@
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"test": "(tstest test/ --verbose --logfile --timeout 60)",
|
||||
"build": "(tsbuild --web --allowimplicitany)",
|
||||
"build": "(tsbuild tsfolders --allowimplicitany)",
|
||||
"buildDocs": "(tsdoc)"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@git.zone/tsbuild": "^3.1.2",
|
||||
"@git.zone/tsrun": "^2.0.0",
|
||||
"@git.zone/tstest": "^3.1.3",
|
||||
"@types/node": "^24.10.1"
|
||||
"@git.zone/tsbuild": "^4.1.2",
|
||||
"@git.zone/tsrun": "^2.0.1",
|
||||
"@git.zone/tstest": "^3.1.8",
|
||||
"@types/node": "^25.2.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@push.rocks/smartpath": "^6.0.0"
|
||||
}
|
||||
"@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"
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user