@bsv/authsocket-client
Version:
Mutually Authenticated Web Sockets Client
80 lines • 2.08 kB
JSON
{
"name": "@bsv/authsocket-client",
"version": "2.1.1",
"publishConfig": {
"access": "public"
},
"description": "Mutually Authenticated Web Sockets Client",
"type": "module",
"main": "dist/cjs/mod.js",
"module": "dist/esm/mod.js",
"types": "dist/types/mod.d.ts",
"files": [
"dist",
"src",
"LICENSE.txt"
],
"exports": {
".": {
"import": "./dist/esm/mod.js",
"require": "./dist/cjs/mod.js",
"types": "./dist/types/mod.d.ts"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bsv-blockchain/ts-stack.git",
"directory": "packages/messaging/authsocket-client"
},
"keywords": [
"BSV",
"Blockchain",
"Authentication",
"Websockets",
"Sockets"
],
"author": "BSV Blockchain Association",
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/bsv-blockchain/ts-stack/issues"
},
"homepage": "https://github.com/bsv-blockchain/ts-stack/tree/main/packages/messaging/authsocket-client#readme",
"dependencies": {
"socket.io-client": "^4.8.3"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"ts-jest": "^29.4.12",
"ts-loader": "^9.6.2",
"ts2md": "^0.2.8",
"tsconfig-to-dual-package": "^1.2.0",
"typescript": "^6.0.3",
"webpack": "^5.109.0",
"webpack-cli": "^7.2.1",
"oxlint": "^1.75.0",
"@bsv/sdk": "^2.2.0"
},
"peerDependencies": {
"@bsv/sdk": "^2.1.6"
},
"peerDependenciesMeta": {
"@bsv/sdk": {
"optional": false
}
},
"scripts": {
"test": "npm run build && jest",
"test:watch": "npm run build && jest --watch",
"test:coverage": "npm run build && jest --coverage",
"lint": "oxlint src",
"build": "npm run build:ts",
"build:ts": "tsc -b && tsconfig-to-dual-package tsconfig.cjs.json",
"build:umd": "webpack --config webpack.config.js",
"dev": "tsc -b -w",
"prepublish": "npm run build",
"doc": "ts2md"
}
}