@txfence/cli 0.1.0 → 0.1.2

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/CHANGELOG.md +26 -0
  2. package/package.json +9 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @txfence/cli
2
2
 
3
+ ## 0.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - fix package descriptions — remove markdown, plain text only
8
+ - Updated dependencies
9
+ - @txfence/audit@0.1.2
10
+ - @txfence/core@0.1.2
11
+ - @txfence/evm@0.1.2
12
+ - @txfence/mcp@0.1.2
13
+ - @txfence/provenance@0.1.2
14
+ - @txfence/verify@0.1.2
15
+
16
+ ## 0.1.1
17
+
18
+ ### Patch Changes
19
+
20
+ - fix missing license field (MIT)
21
+ - Updated dependencies
22
+ - @txfence/audit@0.1.1
23
+ - @txfence/core@0.1.1
24
+ - @txfence/evm@0.1.1
25
+ - @txfence/mcp@0.1.1
26
+ - @txfence/provenance@0.1.1
27
+ - @txfence/verify@0.1.1
28
+
3
29
  ## 0.1.0
4
30
 
5
31
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,8 @@
1
1
  {
2
2
  "name": "@txfence/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
+ "license": "MIT",
5
+ "description": "Command-line interface for txfence — simulation, policy checks, dry-runs, replay, intent execution, formal verification, and provenance.",
4
6
  "type": "module",
5
7
  "private": false,
6
8
  "main": "./dist/index.js",
@@ -23,12 +25,12 @@
23
25
  "commander": "^12.0.0",
24
26
  "tsx": "^4.0.0",
25
27
  "viem": "^2.48.8",
26
- "@txfence/provenance": "0.1.0",
27
- "@txfence/evm": "0.1.0",
28
- "@txfence/audit": "0.1.0",
29
- "@txfence/mcp": "0.1.0",
30
- "@txfence/core": "0.1.0",
31
- "@txfence/verify": "0.1.0"
28
+ "@txfence/audit": "0.1.2",
29
+ "@txfence/evm": "0.1.2",
30
+ "@txfence/mcp": "0.1.2",
31
+ "@txfence/provenance": "0.1.2",
32
+ "@txfence/verify": "0.1.2",
33
+ "@txfence/core": "0.1.2"
32
34
  },
33
35
  "devDependencies": {
34
36
  "vitest": "^4.1.5",