@ewanc26/tid 1.0.0 → 1.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.
- package/README.md +1 -1
- package/package.json +12 -8
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,24 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ewanc26/tid",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Zero-dependency AT Protocol TID generation for Node.js and browsers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
8
|
-
"types":
|
|
9
|
-
"import":
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"import": "./dist/index.js",
|
|
10
10
|
"require": "./dist/index.cjs"
|
|
11
11
|
}
|
|
12
12
|
},
|
|
13
|
-
"main":
|
|
13
|
+
"main": "./dist/index.cjs",
|
|
14
14
|
"module": "./dist/index.js",
|
|
15
15
|
"types": "./dist/index.d.ts",
|
|
16
|
-
"files": [
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"README.md",
|
|
19
|
+
"LICENCE"
|
|
20
|
+
],
|
|
17
21
|
"scripts": {
|
|
18
|
-
"build":
|
|
19
|
-
"dev":
|
|
22
|
+
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
|
|
23
|
+
"dev": "tsup src/index.ts --format esm,cjs --dts --watch",
|
|
20
24
|
"type-check": "tsc --noEmit",
|
|
21
|
-
"test":
|
|
25
|
+
"test": "node --test dist/index.test.js"
|
|
22
26
|
},
|
|
23
27
|
"keywords": [
|
|
24
28
|
"atproto",
|