@owf/mdoc 0.6.0-alpha-20260225221529
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/LICENSE +176 -0
- package/README.md +47 -0
- package/dist/index.d.mts +1928 -0
- package/dist/index.mjs +3499 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +63 -0
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@owf/mdoc",
|
|
3
|
+
"description": "ISO 18013-5 Mdoc and MDL",
|
|
4
|
+
"license": "Apache-2.0",
|
|
5
|
+
"author": "Animo Solutions",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": "./dist/index.mjs",
|
|
8
|
+
"./package.json": "./package.json"
|
|
9
|
+
},
|
|
10
|
+
"version": "0.6.0-alpha-20260225221529",
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"@biomejs/biome": "2.3.13",
|
|
16
|
+
"@changesets/cli": "^2.29.7",
|
|
17
|
+
"@noble/curves": "^2.0.1",
|
|
18
|
+
"@noble/hashes": "^2.0.1",
|
|
19
|
+
"@panva/hkdf": "^1.2.1",
|
|
20
|
+
"@peculiar/x509": "^1.14.3",
|
|
21
|
+
"@types/node": "^25.1.0",
|
|
22
|
+
"jose": "^6.1.0",
|
|
23
|
+
"tsdown": "^0.20.1",
|
|
24
|
+
"typescript": "~5.9.3",
|
|
25
|
+
"vitest": "^4.0.18"
|
|
26
|
+
},
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "https://github.com/owf/mdoc-ts"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"mdl",
|
|
33
|
+
"iso-18013-5",
|
|
34
|
+
"iso-18013-7",
|
|
35
|
+
"m-doc",
|
|
36
|
+
"m-doc-cbor",
|
|
37
|
+
"m-doc-cbor-parser",
|
|
38
|
+
"m-doc-cbor-validator",
|
|
39
|
+
"m-doc-cbor-encoder",
|
|
40
|
+
"m-doc-cbor-decoder",
|
|
41
|
+
"m-doc-cbor-iso-18013-5",
|
|
42
|
+
"m-doc-cbor-iso-18013-5-parser",
|
|
43
|
+
"m-doc-cbor-iso-18013-5-validator",
|
|
44
|
+
"m-doc-cbor-iso-18013-5-encoder",
|
|
45
|
+
"m-doc-cbor-iso-18013-5-decoder"
|
|
46
|
+
],
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"cbor-x": "^1.6.0",
|
|
49
|
+
"zod": "^4.3.6",
|
|
50
|
+
"zod-validation-error": "^5.0.0"
|
|
51
|
+
},
|
|
52
|
+
"scripts": {
|
|
53
|
+
"types:check": "tsc --noEmit",
|
|
54
|
+
"style:check": "biome check --unsafe",
|
|
55
|
+
"style:fix": "biome check --write --unsafe",
|
|
56
|
+
"build": "tsdown",
|
|
57
|
+
"test": "vitest",
|
|
58
|
+
"release": "pnpm build && pnpm changeset publish --no-git-tag",
|
|
59
|
+
"changeset-version": "pnpm changeset version && pnpm style:fix"
|
|
60
|
+
},
|
|
61
|
+
"module": "./dist/index.mjs",
|
|
62
|
+
"types": "./dist/index.d.mts"
|
|
63
|
+
}
|