-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 973 Bytes
/
package.json
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
{
"name": "@skyware/firehose",
"type": "module",
"description": "A simple client for consuming data from an AT Protocol Relay.",
"version": "0.3.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MPL-2.0",
"repository": "https://github.com/skyware-js/firehose",
"homepage": "https://skyware.js.org/docs/firehose",
"keywords": [
"bluesky",
"bot",
"atproto",
"skyware"
],
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"fmt": "dprint fmt",
"prepublish": "pnpm lint && pnpm fmt && pnpm build"
},
"devDependencies": {
"@atcute/client": "^2.0.2",
"@types/node": "^22.5.5",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"dprint": "^0.41.0",
"eslint": "^8.50.0",
"multiformats": "^13.1.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@atcute/car": "^1.1.0",
"@atcute/cbor": "^1.0.3",
"ws": "^8.16.0"
},
"files": [
"dist"
]
}