-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.76 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.76 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
89
{
"name": "@msonnb/fedisky",
"version": "0.0.2",
"license": "MIT",
"description": "ActivityPub federation sidecar for ATProto PDS",
"keywords": [
"atproto",
"activitypub",
"federation",
"pds"
],
"homepage": "https://github.com/msonnb/fedisky",
"repository": {
"type": "git",
"url": "https://github.com/msonnb/fedisky"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --build tsconfig.build.json",
"start": "node --enable-source-maps entrypoint.js",
"test": "vitest run --exclude 'e2e-tests/**'",
"test:watch": "vitest --exclude 'e2e-tests/**'",
"test:log": "tail -50 test.log | pino-pretty",
"test:e2e": "bash e2e-tests/run-e2e.sh",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write ."
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@atproto/api": "^0.18.16",
"@atproto/bsky": "^0.0.210",
"@atproto/common": "^0.5.8",
"@atproto/lex-cbor": "^0.0.10",
"@atproto/lexicon": "^0.6.0",
"@atproto/repo": "^0.8.12",
"@atproto/syntax": "^0.4.2",
"@fedify/express": "2.0.0-dev.279",
"@fedify/fedify": "2.0.0-dev.279",
"@fedify/sqlite": "2.0.0-dev.279",
"@fedify/vocab": "2.0.0-dev.279",
"@fedify/vocab-runtime": "2.0.0-dev.279",
"@js-temporal/polyfill": "^0.5.1",
"@logtape/logtape": "^2.0.2",
"@logtape/otel": "^2.0.2",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.69.0",
"better-sqlite3": "^10.0.0",
"escape-html": "^1.0.3",
"express": "^4.17.2",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"html-to-text": "^9.0.5",
"http-terminator": "^3.2.0",
"kysely": "^0.22.0",
"multiformats": "^9.9.0",
"pino": "^8.21.0",
"pino-http": "^8.2.1",
"ws": "^8.12.0"
},
"devDependencies": {
"@eslint/compat": "^2.0.1",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@fedify/testing": "2.0.0-dev.279",
"@types/better-sqlite3": "^7.6.11",
"@types/escape-html": "^1.0.4",
"@types/express": "^4.17.13",
"@types/html-to-text": "^9.0.4",
"@types/node": "^22.19.7",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.23.2",
"eslint-plugin-prettier": "^5.5.5",
"get-port": "^5.1.1",
"prettier": "^3.8.0",
"ts-node": "^10.8.2",
"typescript": "^5.6.3",
"vitest": "^4.0.17"
},
"packageManager": "pnpm@10.28.0+sha512.05df71d1421f21399e053fde567cea34d446fa02c76571441bfc1c7956e98e363088982d940465fd34480d4d90a0668bc12362f8aa88000a64e83d0b0e47be48"
}