@bsv/authsocket
Version:
Mutually Authenticated Web Socket (Server-side)
76 lines (75 loc) • 1.96 kB
JSON
{
"name": "@bsv/authsocket",
"version": "1.0.7",
"publishConfig": {
"access": "public"
},
"description": "Mutually Authenticated Web Socket (Server-side)",
"type": "module",
"main": "dist/cjs/mod.js",
"module": "dist/esm/mod.js",
"types": "dist/types/mod.d.ts",
"files": [
"dist",
"src",
"docs",
"mod.ts",
"LICENSE.txt"
],
"exports": {
".": {
"import": "./dist/esm/mod.js",
"require": "./dist/cjs/mod.js",
"types": "./dist/types/mod.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "npm run build && jest",
"test:watch": "npm run build && jest --watch",
"test:coverage": "npm run build && jest --coverage",
"lint": "ts-standard --fix src/**/*.ts",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitcoin-sv/authsocket.git"
},
"keywords": [
"BSV",
"Blockchain",
"Authentication",
"Websockets",
"Sockets"
],
"author": "BSV Blockchain Association",
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/bitcoin-sv/authsocket/issues"
},
"homepage": "https://github.com/bitcoin-sv/authsocket#readme",
"dependencies": {
"@bsv/sdk": "^1.6.17",
"socket.io": "^4.8.1"
},
"devDependencies": {
"@bsv/authsocket-client": "^1.0.11",
"@bsv/message-box-client": "^1.1.10",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"ts-standard": "^12.0.2",
"ts2md": "^0.2.5",
"tsconfig-to-dual-package": "^1.2.0",
"typescript": "^5.2.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}