-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 921 Bytes
/
package.json
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
36
37
{
"name": "unrealircd-s2s-client",
"version": "1.2.1",
"description": "Client library for interfacing with UnrealIRCD servers, useful for building service packages.",
"devDependencies": {
"@swc/core": "^1.9.3",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.4.0",
"tsup": "^8.3.5",
"typescript": "^4.4.4"
},
"repository": {
"type": "git",
"url": "https://github.com/craftxbox/unrealircd-s2s-client.git"
},
"scripts": {
"build": "tsup",
"test": "jest"
},
"keywords": [
"unrealircd",
"services",
"irc",
"typescript"
],
"author": "craftxbox",
"license": "MIT",
"type": "module",
"main": "./dist/s2s.cjs",
"module": "./dist/s2s.mjs",
"types": "./dist/s2s.d.ts",
"files": [
"dist"
]
}