-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 971 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
39
40
41
{
"type": "module",
"name": "@atcute/bluesky-threading",
"version": "2.0.2",
"description": "create Bluesky threads containing multiple posts with one write",
"license": "MIT",
"repository": {
"url": "https://github.com/mary-ext/atcute",
"directory": "packages/bluesky/threading"
},
"files": [
"dist/",
"lib/",
"!lib/**/*.bench.ts",
"!lib/**/*.test.ts"
],
"exports": {
".": "./dist/index.js"
},
"sideEffects": false,
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "bun test --coverage",
"prepublish": "rm -rf dist; pnpm run build"
},
"peerDependencies": {
"@atcute/bluesky": "^1.0.0",
"@atcute/client": "^2.0.0"
},
"dependencies": {
"@atcute/cbor": "workspace:^",
"@atcute/cid": "workspace:^",
"@atcute/tid": "workspace:^"
},
"devDependencies": {
"@atcute/bluesky": "workspace:^",
"@atcute/bluesky-richtext-builder": "workspace:^",
"@atcute/client": "workspace:^",
"@types/bun": "^1.1.12"
}
}