irclib/package.json

22 lines
544 B
JSON
Raw Normal View History

2022-09-23 17:38:41 +00:00
{
"name": "@icynet/irclib",
"version": "1.0.0",
"description": "IRC library written in TypeScript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepublish": "npm run build"
},
"author": "Evert Prants",
"license": "ISC",
2022-09-24 11:22:51 +00:00
"repository": "https://gitlab.icynet.eu/IcyNetwork/irclib",
2022-09-23 17:38:41 +00:00
"devDependencies": {
"@types/node": "^18.7.18",
"prettier": "^2.7.1",
2022-09-24 11:00:12 +00:00
"typedoc": "^0.23.15",
2022-09-23 17:38:41 +00:00
"typescript": "^4.8.3"
}
}