-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.1 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
{
"name": "atproto-devnet",
"version": "0.1.0",
"description": "Standalone, testable ATProto development network for local development and CI",
"private": true,
"type": "module",
"license": "MIT",
"author": "OpenMeet Team",
"repository": {
"type": "git",
"url": "https://github.com/OpenMeet-Team/atproto-devnet.git"
},
"homepage": "https://github.com/OpenMeet-Team/atproto-devnet",
"keywords": [
"atproto",
"bluesky",
"pds",
"jetstream",
"docker",
"development",
"testing"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:health": "vitest run --testPathPattern health",
"up": "docker compose -f docker-compose.yml -f docker-compose.test.yml up -d --wait",
"down": "docker compose -f docker-compose.yml -f docker-compose.test.yml down -v",
"logs": "docker compose -f docker-compose.yml -f docker-compose.test.yml logs -f"
},
"devDependencies": {
"@atproto/api": "^0.15.0",
"vitest": "^3.0.0",
"ws": "^8.18.0",
"@types/ws": "^8.5.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20"
}
}