๐Ÿ“ฆ socketio / socket.io-aws-sqs-adapter

๐Ÿ“„ package.json ยท 55 lines
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{
  "name": "@socket.io/aws-sqs-adapter",
  "version": "0.1.1",
  "description": "The Socket.IO adapter for AWS Simple Queue Service (SQS), allowing to broadcast events between several Socket.IO servers",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git@github.com:socketio/socket.io-aws-sqs-adapter.git"
  },
  "files": [
    "dist/"
  ],
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "scripts": {
    "compile": "rimraf ./dist && tsc",
    "test": "npm run format:check && tsc && nyc mocha --require ts-node/register --timeout 10000 test/index.ts",
    "format:check": "prettier --parser typescript --check 'lib/**/*.ts' 'test/**/*.ts'",
    "format:fix": "prettier --parser typescript --write 'lib/**/*.ts' 'test/**/*.ts'",
    "prepack": "npm run compile"
  },
  "dependencies": {
    "@aws-sdk/client-sns": "^3.535.0",
    "@aws-sdk/client-sqs": "^3.536.0",
    "@msgpack/msgpack": "^2.8.0",
    "debug": "~4.3.4"
  },
  "peerDependencies": {
    "socket.io-adapter": "^2.5.4"
  },
  "devDependencies": {
    "@types/expect.js": "^0.3.29",
    "@types/mocha": "^10.0.6",
    "@types/node": "^14.14.7",
    "expect.js": "0.3.1",
    "mocha": "^10.2.0",
    "nyc": "^15.1.0",
    "prettier": "^2.1.2",
    "rimraf": "^5.0.5",
    "socket.io": "^4.6.1",
    "socket.io-client": "^4.6.1",
    "ts-node": "^10.9.1",
    "typescript": "^4.9.4"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "keywords": [
    "socket.io",
    "aws",
    "sns",
    "pubsub"
  ]
}