36 lines
727 B
JSON
36 lines
727 B
JSON
{
|
|
"name": "iauthd-ts",
|
|
"version": "1.0.0",
|
|
"description": "IAuth daemon for Nefarious IRCd - TypeScript port",
|
|
"main": "dist/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"dev": "tsx src/index.ts",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage",
|
|
"stress": "tsx tests/stress.ts"
|
|
},
|
|
"keywords": [
|
|
"irc",
|
|
"iauth",
|
|
"dnsbl",
|
|
"nefarious"
|
|
],
|
|
"license": "GPL-2.0",
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.0",
|
|
"tsx": "^4.6.0",
|
|
"typescript": "^5.3.0",
|
|
"vitest": "^2.1.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"dependencies": {
|
|
"ldapts": "^7.2.1"
|
|
}
|
|
}
|