-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.11 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
{
"name": "@atcute/cbor",
"version": "2.3.6",
"description": "lightweight DASL dCBOR42 codec library for AT Protocol",
"keywords": [
"atproto",
"cbor",
"dasl"
],
"license": "0BSD",
"repository": {
"url": "https://tangled.org/did:plc:pljn5qch4tgadongtc7i6qij",
"directory": "packages/utilities/cbor"
},
"files": [
"dist/",
"!dist/**/*.{test,bench}.*"
],
"type": "module",
"sideEffects": false,
"imports": {
"#runtime": {
"workerd": "./dist/runtime.js",
"node": "./dist/runtime.node.js",
"default": "./dist/runtime.js"
}
},
"exports": {
".": "./dist/index.js",
"./bytes": "./dist/bytes.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "vitest",
"prepublish": "rm -rf dist; pnpm run build"
},
"dependencies": {
"@atcute/cid": "workspace:^",
"@atcute/multibase": "workspace:^",
"@atcute/uint8array": "workspace:^"
},
"devDependencies": {
"@ipld/dag-cbor": "^10.0.2",
"@types/node": "^26.4.0",
"@vitest/coverage-v8": "^4.1.11",
"cbor-x": "^1.6.6",
"vitest": "^4.1.11"
},
"peerDependencies": {
"@atcute/cid": "^2.0.0"
}
}