forked from liamcottle/rustplus.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.84 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@grolm/rustplus.js-typed",
"version": "3.0.3",
"description": "Unofficial NodeJS library for controlling Smart Switches in the PC game Rust",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"rustplus": "./cli/index.js"
},
"scripts": {
"build": "tsup src/index.ts --config tsup.config.ts",
"lint": "tsc --noEmit",
"format": "prettier --write .",
"build:types": "cp rustplus.proto proto.proto && protoc --ts_out=./src --ts_opt long_type_string --proto_path . proto.proto && npm run build:types:clean || npm run build:types:clean",
"build:types:clean": "rm proto.proto",
"release": "npm run build && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/s8wa2/rustplus.js-typed.git"
},
"keywords": [
"rust",
"rust+",
"rustplus",
"rustplus-api",
"companion",
"api",
"websocket",
"smart switch",
"smart alarm",
"team chat"
],
"author": "Liam Cottle",
"license": "MIT",
"bugs": {
"url": "https://github.com/s8wa2/rustplus.js-typed/issues"
},
"homepage": "https://github.com/s8wa2/rustplus.js-typed#readme",
"dependencies": {
"@protobuf-ts/plugin": "^2.9.3",
"axios": "^1.2.2",
"chrome-launcher": "^0.15.0",
"command-line-args": "^5.2.0",
"command-line-usage": "^6.1.1",
"express": "^4.17.1",
"jimp": "^0.22.12",
"long": "^5.2.1",
"protobufjs": "^7.2.1",
"protoc": "^1.1.3",
"push-receiver": "^2.1.0",
"ts-proto": "^1.148.1",
"type-fest": "^3.7.2",
"typed-emitter": "^2.1.0",
"uuid": "^9.0.0",
"ws": "^8.3.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@grpc/proto-loader": "^0.7.10",
"@types/node": "^20.2.6",
"@types/ws": "^8.5.10",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
}
}