@fishjam-cloud/ts-client
Version:
Typescript client library for Fishjam
75 lines • 2.04 kB
JSON
{
"name": "@fishjam-cloud/ts-client",
"version": "0.18.0",
"description": "Typescript client library for Fishjam",
"license": "Apache-2.0",
"author": "Fishjam Team",
"repository": {
"type": "git",
"url": "git+https://github.com/fishjam-cloud/web-client-sdk.git",
"directory": "packages/ts-client"
},
"homepage": "https://github.com/fishjam-cloud/web-client-sdk#readme",
"bugs": "https://github.com/fishjam-cloud/web-client-sdk/issues",
"keywords": [
"webrtc",
"fishjam"
],
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist/**"
],
"tsup": {
"minify": true,
"format": [
"esm"
]
},
"scripts": {
"build": "yarn build:check && tsup src/index.ts --dts-resolve",
"build:check": "tsc --noEmit",
"format": "prettier --write . --ignore-path ./.eslintignore",
"format:check": "prettier --check . --ignore-path ./.eslintignore",
"lint": "eslint . --ext .ts,.tsx --fix",
"lint:check": "eslint . --ext .ts,.tsx",
"prepare": "tsc",
"prepack": "yarn build",
"test": "vitest run"
},
"dependencies": {
"@binbat/whip-whep": "^1.1.1-sdp-trickle-throw",
"@bufbuild/protobuf": "^2.2.3",
"events": "^3.3.0",
"typed-emitter": "^2.1.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@fishjam-cloud/protobufs": "0.10.2",
"@fishjam-cloud/webrtc-client": "0.18.0",
"@playwright/test": "^1.51.1",
"@types/events": "^3.0.3",
"@types/node": "^22.14.0",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^3.1.1",
"fake-mediastreamtrack": "^2.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"tsup": "^8.4.0",
"typedoc": "^0.28.2",
"typedoc-plugin-external-resolver": "^1.0.3",
"typedoc-plugin-mdn-links": "^5.0.1",
"typescript": "^5.8.3",
"vitest": "^3.1.1",
"zod": "^3.24.2"
},
"lint-staged": {
"*": [
"yarn format:check"
],
"*.(js|ts|tsx)": [
"yarn lint:check"
]
},
"packageManager": "yarn@4.3.0"
}