-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 799 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "ts-radius-client",
"version": "0.1.0",
"description": "A standards-compliant RADIUS client for TypeScript/Bun",
"author": "essinghigh-org",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/essinghigh-org/ts-radius.git"
},
"keywords": [
"radius",
"bun",
"typescript",
"auth"
],
"main": "src/index.ts",
"types": "src/index.ts",
"scripts": {
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix --max-warnings=0",
"test": "bun test"
},
"peerDependencies": {
"typescript": "^5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "latest",
"@types/node": "^25.2.3",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"typescript-eslint": "^8.56.1"
}
}