-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 919 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
38
39
40
41
42
43
{
"name": "@ccbluex/axochat-client",
"version": "2.0.1",
"description": "JavaScript API client for AxoChat",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "[email protected]:CCBlueX/axochat-client.git",
"keywords": [
"ccbluex",
"axochat",
"client",
"liquidbounce",
"liquidchat"
],
"author": {
"name": "Marvin Witt",
"email": "[email protected]",
"url": "https://github.com/NurMarvin"
},
"scripts": {
"build": "tsup",
"watch": "tsup -w",
"format": "prettier --write \"src/**/*.{js,ts}\"",
"lint": "prettier --check \"src/**/*.{js,ts}\""
},
"license": "OSL-3.0",
"dependencies": {
"isomorphic-ws": "^5.0.0"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@types/ws": "^8.5.10",
"eslint": "^8.57.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.4.3"
}
}