forked from alexemanuelol/rustplus-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.53 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.53 KB
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
{
"name": "rustplus-ts",
"version": "0.0.11",
"description": "Rust+ Bot written in TypeScript for the game Rust.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"start": "yarn build && yarn start:prod",
"start:prod": "node ./dist/index.js",
"build": "swc src -d dist -D --delete-dir-on-start --strip-leading-paths",
"lint": "eslint \"src/**\" --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"protogen": "protoc --ts_out src/lib/interfaces --ts_opt long_type_string --proto_path src/protos src/protos/rustplus.proto"
},
"dependencies": {
"@liamcottle/push-receiver": "^0.0.4",
"@protobuf-ts/plugin": "^2.9.6",
"@sapphire/lexure": "^1.1.10",
"@sapphire/pieces": "^4.4.1",
"@sapphire/result": "^2.7.2",
"@sapphire/utilities": "^3.18.2",
"@swc/cli": "0.7.3",
"@swc/core": "1.11.21",
"@types/node": "^24.3.1",
"jimp": "^1.6.0",
"typescript": "^5.8.2",
"ws": "^8.18.1"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"dotenv": "^16.4.5",
"eslint": "8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.6",
"prettier": "^3.5.3"
},
"packageManager": "yarn@4.9.4"
}