-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "@tf2pickup-org/mumble-protocol",
"version": "1.0.8",
"type": "module",
"description": "Mumble protocol typings",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"generate-proto": "protoc --ts_out ./ --ts_opt eslint_disable --proto_path . Mumble.proto",
"build": "tsc && tsc-alias",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/tf2pickup-org/mumble-protocol.git"
},
"keywords": [
"mumble",
"protocol",
"typescript"
],
"publishConfig": {
"access": "public"
},
"author": "Michał Garapich <garrappachc@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tf2pickup-org/mumble-protocol/issues"
},
"homepage": "https://github.com/tf2pickup-org/mumble-protocol#readme",
"dependencies": {
"@protobuf-ts/runtime": "2.9.4"
},
"devDependencies": {
"@protobuf-ts/plugin": "2.9.4",
"@release-it/conventional-changelog": "10.0.0",
"@tsconfig/node16": "16.1.3",
"release-it": "18.1.1",
"tsc-alias": "1.8.10",
"typescript": "5.7.3"
}
}