@bcts/dcbor-cli 1.0.0-alpha.14 → 1.0.0-alpha.16

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 (3) hide show
  1. package/LICENSE +2 -2
  2. package/README.md +0 -11
  3. package/package.json +8 -8
package/LICENSE CHANGED
@@ -1,5 +1,5 @@
1
- Copyright © 2023 Blockchain Commons, LLC
2
- Copyright © 2025 Leonardo Amoroso Custodio
1
+ Copyright © 2023-2026 Blockchain Commons, LLC
2
+ Copyright © 2025-2026 Leonardo Amoroso Custodio
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without modification,
5
5
  are permitted provided that the following conditions are met:
package/README.md CHANGED
@@ -92,14 +92,3 @@ Options:
92
92
  -h, --help Display help
93
93
  -V, --version Display version
94
94
  ```
95
-
96
- ## Dependencies
97
-
98
- - `@bcts/dcbor` - dCBOR encoding/decoding
99
- - `@bcts/dcbor-parse` - Diagnostic notation parser
100
- - `@bcts/dcbor-pattern` - Pattern matching
101
- - `@bcts/components` - Shared components
102
-
103
- ## License
104
-
105
- BSD-2-Clause-Patent
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bcts/dcbor-cli",
3
- "version": "1.0.0-alpha.14",
3
+ "version": "1.0.0-alpha.16",
4
4
  "type": "module",
5
5
  "description": "Command line parser/validator for deterministic CBOR (dCBOR)",
6
6
  "license": "BSD-2-Clause-Patent",
@@ -20,7 +20,7 @@
20
20
  "repository": {
21
21
  "type": "git",
22
22
  "url": "git+https://github.com/leonardocustodio/bcts.git",
23
- "directory": "packages/dcbor-cli"
23
+ "directory": "tools/dcbor-cli"
24
24
  },
25
25
  "bugs": {
26
26
  "url": "https://github.com/leonardocustodio/bcts/issues"
@@ -70,18 +70,18 @@
70
70
  "devDependencies": {
71
71
  "@bcts/eslint": "^0.1.0",
72
72
  "@bcts/tsconfig": "^0.1.0",
73
- "@types/node": "^25.0.3",
73
+ "@types/node": "^25.0.6",
74
74
  "eslint": "^9.39.2",
75
- "tsdown": "^0.18.3",
75
+ "tsdown": "^0.18.4",
76
76
  "typedoc": "^0.28.15",
77
77
  "typescript": "^5.9.3",
78
78
  "vitest": "^4.0.16"
79
79
  },
80
80
  "dependencies": {
81
- "@bcts/components": "^1.0.0-alpha.14",
82
- "@bcts/dcbor": "^1.0.0-alpha.14",
83
- "@bcts/dcbor-parse": "^1.0.0-alpha.14",
84
- "@bcts/dcbor-pattern": "^1.0.0-alpha.14",
81
+ "@bcts/components": "^1.0.0-alpha.16",
82
+ "@bcts/dcbor": "^1.0.0-alpha.16",
83
+ "@bcts/dcbor-parse": "^1.0.0-alpha.16",
84
+ "@bcts/dcbor-pattern": "^1.0.0-alpha.16",
85
85
  "commander": "^14.0.2"
86
86
  }
87
87
  }