@atcute/cid 2.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +9 -4
package/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # @atcute/cid
2
2
 
3
- CIDv1 codec library.
3
+ lightweight [DASL CID][dasl-cid] codec library for AT Protocol.
4
+
5
+ [dasl-cid]: https://dasl.ing/cid.html
4
6
 
5
7
  ```ts
6
8
  import * as CID from '@atcute/cid';
package/package.json CHANGED
@@ -1,8 +1,13 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@atcute/cid",
4
- "version": "2.0.0",
5
- "description": "create and parse AT Protocol-blessed CIDv1 format",
4
+ "version": "2.0.1",
5
+ "description": "lightweight DASL CID codec library for AT Protocol",
6
+ "keywords": [
7
+ "atproto",
8
+ "dasl",
9
+ "cid"
10
+ ],
6
11
  "license": "MIT",
7
12
  "repository": {
8
13
  "url": "https://github.com/mary-ext/atcute",
@@ -19,11 +24,11 @@
19
24
  },
20
25
  "sideEffects": false,
21
26
  "devDependencies": {
22
- "@types/bun": "^1.1.12"
27
+ "@types/bun": "^1.1.14"
23
28
  },
24
29
  "dependencies": {
25
30
  "@atcute/multibase": "^1.0.1",
26
- "@atcute/varint": "^1.0.1"
31
+ "@atcute/varint": "^1.0.2"
27
32
  },
28
33
  "scripts": {
29
34
  "build": "tsc --project tsconfig.build.json",