-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.06 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@bsv/authsocket-client",
"version": "2.1.0",
"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"
},
"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/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.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"ts-jest": "^29.4.11",
"ts-loader": "^9.6.2",
"ts-standard": "^12.0.2",
"ts2md": "^0.2.5",
"tsconfig-to-dual-package": "^1.2.0",
"typescript": "^7.0.2",
"webpack": "^5.108.4",
"webpack-cli": "^7.2.1",
"@bsv/sdk": "workspace:^"
},
"peerDependencies": {
"@bsv/sdk": "^2.1.6"
},
"peerDependenciesMeta": {
"@bsv/sdk": {
"optional": false
}
}
}