-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
{
"name": "@tf2pickup-org/mumble-client",
"version": "0.10.0",
"description": "A simple bot for managing mumble servers",
"license": "MIT",
"type": "module",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/tf2pickup-org/mumble-client",
"repository": {
"type": "git",
"url": "https://github.com/tf2pickup-org/mumble-client.git"
},
"bugs": {
"url": "https://github.com/tf2pickup-org/mumble-client/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint \"src/**/*.ts\"",
"build": "tsc --project tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"test": "vitest",
"test:e2e": "vitest --config ./e2e/vitest.config.ts",
"release": "release-it"
},
"contributors": [
"Michał Garapich <garrappachc@gmail.com>"
],
"keywords": [
"mumble",
"bot"
],
"dependencies": {
"@protobuf-ts/runtime": "2.9.4",
"@tf2pickup-org/mumble-protocol": "1.0.8",
"rxjs": "7.8.1"
},
"devDependencies": {
"@release-it/conventional-changelog": "10.0.0",
"@tsconfig/node16": "16.1.3",
"@types/node": "22.10.5",
"@types/pem": "1.14.4",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"eslint": "9.18.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"pem": "1.14.8",
"prettier": "3.4.2",
"release-it": "18.1.1",
"trace-unhandled": "2.0.1",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tsc-alias": "1.8.10",
"tsconfig-paths": "4.2.0",
"typescript": "5.7.3",
"vitest": "2.1.8"
}
}