-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.29 KB
/
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
44
45
46
47
48
49
50
51
52
53
{
"name": "ordr.js",
"version": "4.0.0",
"description": "A JavaScript library for interacting with the o!rdr API and WebSocket",
"keywords": [
"o!rdr",
"osu render",
"osu replay"
],
"homepage": "https://github.com/LockBlock-dev/ordr.js#readme",
"bugs": {
"url": "https://github.com/LockBlock-dev/ordr.js/issues"
},
"license": "MIT",
"author": {
"name": "LockBlock-dev"
},
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/lockblock"
},
"files": [
"dist"
],
"main": "./dist/client.js",
"repository": {
"type": "git",
"url": "https://github.com/LockBlock-dev/ordr.js.git"
},
"scripts": {
"build": "tsc",
"doc": "typedoc --options typedoc.config.cjs",
"test": "xo"
},
"dependencies": {
"socket.io-client": "^4.7.5",
"undici": "^6.10.1"
},
"devDependencies": {
"@types/node": "^20.11.30",
"prettier": "3.2.5",
"typedoc": "^0.25.12",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.4.3",
"xo": "^0.58.0"
},
"engines": {
"node": ">=20.0.0"
},
"type": "module",
"exports": "./dist/client.js",
"types": "./dist/client.d.ts"
}