-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 988 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 988 Bytes
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": "rustcon-js",
"version": "1.1.1",
"description": "RustCON JS is a JavaScript library for interacting with Rust servers via WebSockets (Web RCON)",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"events": "^3.3.0",
"unws": "^0.2.4"
},
"devDependencies": {
"@types/events": "^3.0.3",
"denoify": "^1.6.9",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"denoify": "denoify",
"build": "tsup && denoify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RustCONxyz/rustcon-js.git"
},
"keywords": [
"rcon",
"rust",
"rustcon",
"webrcon"
],
"author": "Kopter",
"license": "MIT",
"bugs": {
"url": "https://github.com/RustCONxyz/rustcon-js/issues"
},
"homepage": "https://github.com/RustCONxyz/rustcon-js#readme"
}