-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 834 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
{
"type": "module",
"name": "@atcute/bluesky-richtext-segmenter",
"version": "1.0.5",
"description": "segments Bluesky's rich text facets into tokens",
"license": "MIT",
"repository": {
"url": "https://github.com/mary-ext/atcute",
"directory": "packages/bluesky/richtext-segmenter"
},
"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": "^1.0.0 || ^2.0.0"
},
"devDependencies": {
"@atcute/bluesky": "workspace:^",
"@atcute/client": "workspace:^",
"@types/bun": "^1.1.12",
"mitata": "^1.0.10"
}
}