-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.4 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
81
82
83
84
85
86
87
88
{
"name": "@bsv/authsocket",
"version": "2.1.3",
"sideEffects": false,
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"description": "Mutually Authenticated Web Socket (Server-side)",
"type": "module",
"main": "./dist/mod.cjs",
"module": "./dist/mod.mjs",
"types": "./dist/mod.d.mts",
"files": [
"dist",
"README.md",
"LICENSE.txt"
],
"exports": {
".": {
"import": {
"types": "./dist/mod.d.mts",
"default": "./dist/mod.mjs"
},
"require": {
"types": "./dist/mod.d.cts",
"default": "./dist/mod.cjs"
}
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown mod.ts --format cjs,esm --dts --sourcemap --clean --out-dir dist --platform node --tsconfig tsconfig.base.json --unbundle",
"dev": "pnpm build --watch",
"doc": "ts2md",
"format:check": "pnpm --workspace-root exec prettier --check \"packages/messaging/authsocket/**/*.{js,json,ts}\"",
"lint": "oxlint mod.ts src test --deny-warnings",
"pack:check": "node ../../../scripts/check-package-artifact.mjs . --exports AuthSocket,AuthSocketServer,SocketServerTransport",
"prepublishOnly": "pnpm build",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"typecheck": "tsc --project tsconfig.typecheck.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bsv-blockchain/ts-stack.git",
"directory": "packages/messaging/authsocket"
},
"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#readme",
"dependencies": {
"socket.io": "^4.8.3"
},
"devDependencies": {
"@bsv/sdk": "workspace:^",
"@types/jest": "^30.0.0",
"@types/node": "^26.1.1",
"jest": "^30.4.2",
"oxlint": "^1.75.0",
"ts-jest": "^29.4.12",
"ts2md": "^0.2.8",
"tsdown": "0.22.14",
"@typescript/native": "npm:typescript@7.0.2",
"typescript": "npm:@typescript/typescript6@6.0.2"
},
"peerDependencies": {
"@bsv/sdk": "^2.1.6"
},
"peerDependenciesMeta": {
"@bsv/sdk": {
"optional": false
}
}
}