-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 874 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 874 Bytes
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
{
"name": "flok-proto",
"description": "Backend protocol definitions for Flok — invite-only encrypted communities on the AT Protocol.",
"type": "module",
"version": "0.0.1",
"author": "Gregg Tabot <gregg@flox.social>",
"repository": {
"type": "git",
"url": "https://github.com/gtabot/flok-proto.git"
},
"keywords": [
"flok",
"bluesky",
"atproto",
"encrypted communities",
"protocol"
],
"engines": {
"node": ">=18.0.0 <23.0.0"
},
"scripts": {
"build": "tsc",
"update": "ncu -u && npm install",
"validate": "node --loader ts-node/esm scripts/validate-lexicons.ts"
},
"devDependencies": {
"@atproto/api": "^0.14.13",
"@atproto/lexicon": "^0.4.9",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}