@bcts/envelope-pattern 1.0.0-alpha.13 → 1.0.0-alpha.15

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 +1 -1
  3. package/package.json +7 -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
@@ -4,7 +4,7 @@
4
4
 
5
5
  ## Introduction
6
6
 
7
- `@bcts/envelope-pattern` provides a powerful pattern matching language for querying and extracting data from [Gordian Envelope](https://github.com/leonardocustodio/bcts/packages/envelope) structures. It extends the dCBOR pattern matching capabilities with envelope-specific patterns for subjects, predicates, objects, assertions, and wrapped envelopes.
7
+ `@bcts/envelope-pattern` provides a powerful pattern matching language for querying and extracting data from [Gordian Envelope](../envelope) structures. It extends the dCBOR pattern matching capabilities with envelope-specific patterns for subjects, predicates, objects, assertions, and wrapped envelopes.
8
8
 
9
9
  The pattern language is designed to be expressive yet concise, allowing you to match complex nested envelope structures with simple pattern expressions.
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bcts/envelope-pattern",
3
- "version": "1.0.0-alpha.13",
3
+ "version": "1.0.0-alpha.15",
4
4
  "type": "module",
5
5
  "description": "Pattern matching for Gordian Envelope structures",
6
6
  "license": "BSD-2-Clause-Patent",
@@ -44,7 +44,6 @@
44
44
  ],
45
45
  "scripts": {
46
46
  "build": "tsdown",
47
- "dev": "tsdown --watch",
48
47
  "test": "vitest run",
49
48
  "test:watch": "vitest",
50
49
  "lint": "eslint 'src/**/*.ts' 'tests/**/*.ts'",
@@ -61,16 +60,16 @@
61
60
  "@bcts/eslint": "^0.1.0",
62
61
  "@bcts/tsconfig": "^0.1.0",
63
62
  "eslint": "^9.39.2",
64
- "tsdown": "^0.18.3",
63
+ "tsdown": "^0.18.4",
65
64
  "typedoc": "^0.28.15",
66
65
  "typescript": "^5.9.3",
67
66
  "vitest": "^4.0.16"
68
67
  },
69
68
  "dependencies": {
70
- "@bcts/dcbor": "^1.0.0-alpha.13",
71
- "@bcts/dcbor-parse": "^1.0.0-alpha.13",
72
- "@bcts/dcbor-pattern": "^1.0.0-alpha.13",
73
- "@bcts/envelope": "^1.0.0-alpha.13",
74
- "@bcts/known-values": "^1.0.0-alpha.13"
69
+ "@bcts/dcbor": "^1.0.0-alpha.15",
70
+ "@bcts/dcbor-parse": "^1.0.0-alpha.15",
71
+ "@bcts/dcbor-pattern": "^1.0.0-alpha.15",
72
+ "@bcts/envelope": "^1.0.0-alpha.15",
73
+ "@bcts/known-values": "^1.0.0-alpha.15"
75
74
  }
76
75
  }