-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.27 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@skyware/labeler",
"type": "module",
"description": "A lightweight alternative to Ozone for operating an atproto labeler.",
"version": "0.2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "dist/bin.js",
"license": "MPL-2.0",
"repository": "https://github.com/skyware-js/labeler",
"homepage": "https://skyware.js.org/docs/labeler",
"keywords": [
"bluesky",
"labeler",
"atproto",
"skyware"
],
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"fmt": "dprint fmt",
"prepublish": "pnpm lint && pnpm fmt && pnpm build"
},
"exports": {
".": "./dist/index.js",
"./scripts": "./dist/scripts/index.js"
},
"devDependencies": {
"@types/node": "^20.11.19",
"@types/prompts": "^2.4.9",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"dprint": "^0.41.0",
"eslint": "^8.50.0",
"typescript": "^5.5.4"
},
"dependencies": {
"@atcute/bluesky": "^1.0.7",
"@atcute/cbor": "^1.0.2",
"@atcute/client": "^2.0.3",
"@atcute/ozone": "^1.0.4",
"@fastify/websocket": "^10.0.1",
"@libsql/client": "^0.14.0",
"@noble/curves": "^1.6.0",
"@noble/hashes": "^1.5.0",
"fastify": "^4.28.1",
"prompts": "^2.4.2",
"uint8arrays": "^5.1.0"
},
"files": [
"dist"
]
}