forked from bluesky-social/atproto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 951 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
{
"name": "@atproto/repo",
"version": "0.5.5",
"license": "MIT",
"description": "atproto repo and MST implementation",
"keywords": [
"atproto",
"mst"
],
"homepage": "https://atproto.com",
"repository": {
"type": "git",
"url": "https://github.com/bluesky-social/atproto",
"directory": "packages/repo"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:profile": "node --inspect ../../node_modules/.bin/jest",
"build": "tsc --build tsconfig.build.json"
},
"dependencies": {
"@atproto/common": "workspace:^",
"@atproto/common-web": "workspace:^",
"@atproto/crypto": "workspace:^",
"@atproto/lexicon": "workspace:^",
"@ipld/car": "^3.2.3",
"@ipld/dag-cbor": "^7.0.0",
"multiformats": "^9.9.0",
"uint8arrays": "3.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"jest": "^28.1.2",
"typescript": "^5.6.3"
}
}