-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "rtgg.js",
"version": "2.1.1",
"description": "A JavaScript API wrapper and WebSocket handler for racetime.gg",
"main": "./dist/index.js",
"files": [
"dist/**/*"
],
"types": "./dist/index.d.ts",
"engines": {
"node": ">=17.5"
},
"scripts": {
"build": "rm -rf dist/* && tsc -p tsconfig.json",
"docs": "rm -rf typedocs/* && typedoc --plugin typedoc-plugin-markdown --out typedocs/ --hideBreadcrumbs true --excludePrivate true src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slashinfty/rtgg.js.git"
},
"keywords": [
"api",
"racetime"
],
"author": "Matt Braddock",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/slashinfty/rtgg.js/issues"
},
"homepage": "https://github.com/slashinfty/rtgg.js#readme",
"devDependencies": {
"@types/node": "^18.0.6",
"@types/ws": "^8.5.3",
"typedoc": "^0.23.8",
"typedoc-plugin-markdown": "^3.13.4",
"typescript": "^4.7.4"
},
"dependencies": {
"ws": "^8.8.1"
}
}