-
Notifications
You must be signed in to change notification settings - Fork 902
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.64 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@atproto/api",
"version": "0.20.38",
"license": "MIT",
"description": "Client library for atproto and Bluesky",
"keywords": [
"atproto",
"bluesky",
"api"
],
"homepage": "https://atproto.com",
"repository": {
"type": "git",
"url": "https://github.com/bluesky-social/atproto",
"directory": "packages/api"
},
"files": [
"./dist",
"./OAUTH.md",
"./README.md",
"./CHANGELOG.md"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@atproto/common-web": "workspace:^",
"@atproto/lexicon": "workspace:^",
"@atproto/syntax": "workspace:^",
"@atproto/xrpc": "workspace:^",
"await-lock": "^3.0.0",
"multiformats": "^13.0.0",
"tlds": "^1.234.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@atproto/lex-cli": "workspace:^",
"@jest/globals": "^28.1.3",
"http-terminator": "^3.2.0",
"jest": "^30.0.0",
"prettier": "^3.9.6"
},
"scripts": {
"codegen:lex": "lex gen-api --yes ./src/client ../../lexicons/com/atproto/*/* ../../lexicons/app/bsky/*/* ../../lexicons/chat/bsky/*/* ../../lexicons/tools/ozone/*/* ../../lexicons/com/germnetwork/*",
"codegen:code": "node ./scripts/generate-code.mjs",
"prebuild": "pnpm run codegen:code && if [ ! -f ./src/client/index.ts ] || [ -n \"$(find ../../lexicons -name '*.json' -newer ./src/client/index.ts -type f -print -quit)\" ]; then pnpm run codegen:lex; fi",
"build": "tsc --build tsconfig.build.json",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
}
}