-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.03 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
{
"name": "@atcute/mst",
"version": "1.0.2",
"description": "atproto MST manipulation utilities",
"keywords": [
"atproto",
"mst",
"repo"
],
"license": "0BSD",
"repository": {
"url": "https://github.com/mary-ext/atcute",
"directory": "packages/utilities/mst"
},
"files": [
"dist/",
"!dist/**/*.{test,bench}.*"
],
"type": "module",
"sideEffects": false,
"exports": {
".": "./dist/index.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"generate-tests": "cd mst-test-suite && mise exec -- uv run python scripts/generate_exhaustive_cars.py",
"build": "tsgo",
"test": "vitest run",
"prepublish": "rm -rf dist; pnpm run build"
},
"dependencies": {
"@atcute/cbor": "workspace:^",
"@atcute/cid": "workspace:^",
"@atcute/uint8array": "workspace:^"
},
"devDependencies": {
"@atcute/car": "workspace:^",
"@types/node": "^25.9.4",
"@vitest/coverage-v8": "^4.1.9",
"valibot": "^1.4.1",
"vitest": "^4.1.9"
},
"peerDependencies": {
"@atcute/cbor": "^2.0.0",
"@atcute/cid": "^2.0.0"
}
}