forked from bluesky-social/atproto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 822 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
{
"name": "@atproto/common",
"version": "0.4.0",
"license": "MIT",
"description": "Shared web-platform-friendly code for atproto libraries",
"keywords": [
"atproto"
],
"homepage": "https://atproto.com",
"repository": {
"type": "git",
"url": "https://github.com/bluesky-social/atproto",
"directory": "packages/common"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc --build tsconfig.build.json"
},
"dependencies": {
"@atproto/common-web": "workspace:^",
"@ipld/dag-cbor": "^7.0.3",
"cbor-x": "^1.5.1",
"iso-datestring-validator": "^2.2.2",
"multiformats": "^9.9.0",
"pino": "^8.15.0"
},
"devDependencies": {
"jest": "^28.1.2",
"typescript": "^5.3.3",
"uint8arrays": "3.0.0"
}
}