forked from bluesky-social/atproto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 807 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
{
"name": "@atproto/api",
"version": "0.2.7",
"main": "src/index.ts",
"scripts": {
"codegen": "lex gen-api ./src/client ../../lexicons/com/atproto/*/* ../../lexicons/app/bsky/*/*",
"build": "node ./build.js",
"postbuild": "tsc --build tsconfig.build.json",
"update-main-to-dist": "node ./update-pkg.js --update-main-to-dist",
"update-main-to-src": "node ./update-pkg.js --update-main-to-src",
"prepublish": "npm run update-main-to-dist",
"postpublish": "npm run update-main-to-src",
"test": "jest"
},
"license": "MIT",
"dependencies": {
"@atproto/common-web": "*",
"@atproto/uri": "*",
"@atproto/xrpc": "*",
"tlds": "^1.234.0",
"typed-emitter": "^2.1.0"
},
"devDependencies": {
"@atproto/lex-cli": "*",
"@atproto/pds": "*"
}
}