-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.51 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.51 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@tf2pickup-org/mumble-client",
"version": "0.13.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",
"exports": "./dist/index.js",
"scripts": {
"lint": "eslint \"src/**/*.ts\"",
"format": "prettier --write .",
"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 <[email protected]>"
],
"keywords": [
"mumble",
"bot"
],
"dependencies": {
"@protobuf-ts/runtime": "2.11.1",
"@tf2pickup-org/mumble-protocol": "1.0.12",
"rxjs": "7.8.2"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@release-it/conventional-changelog": "10.0.6",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "24.12.2",
"@types/pem": "1.14.4",
"eslint": "10.2.0",
"pem": "1.14.8",
"prettier": "3.8.1",
"release-it": "19.2.4",
"tsc-alias": "1.8.16",
"tsconfig-paths": "4.2.0",
"typescript": "6.0.2",
"typescript-eslint": "^8.24.0",
"vitest": "4.1.2"
}
}