@bcts/dcbor-pattern 1.0.0-alpha.19 → 1.0.0-alpha.21
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 +2 -1
- package/README.md +1 -1
- package/dist/index.cjs +28 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -0
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +8 -0
- package/dist/index.d.mts.map +1 -1
- package/dist/index.iife.js +28 -0
- package/dist/index.iife.js.map +1 -1
- package/dist/index.mjs +28 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +11 -22
- package/src/error.ts +4 -0
- package/src/format.ts +4 -0
- package/src/index.ts +4 -0
- package/src/interval.ts +4 -0
- package/src/parse/index.ts +4 -0
- package/src/parse/meta/and-parser.ts +4 -0
- package/src/parse/meta/capture-parser.ts +4 -0
- package/src/parse/meta/index.ts +4 -0
- package/src/parse/meta/not-parser.ts +4 -0
- package/src/parse/meta/or-parser.ts +4 -0
- package/src/parse/meta/primary-parser.ts +4 -0
- package/src/parse/meta/repeat-parser.ts +4 -0
- package/src/parse/meta/search-parser.ts +4 -0
- package/src/parse/parse-registry.ts +4 -0
- package/src/parse/structure/array-parser.ts +4 -0
- package/src/parse/structure/index.ts +4 -0
- package/src/parse/structure/map-parser.ts +4 -0
- package/src/parse/structure/tagged-parser.ts +4 -0
- package/src/parse/token.ts +4 -0
- package/src/parse/value/bool-parser.ts +4 -0
- package/src/parse/value/bytestring-parser.ts +4 -0
- package/src/parse/value/date-parser.ts +4 -0
- package/src/parse/value/digest-parser.ts +4 -0
- package/src/parse/value/index.ts +4 -0
- package/src/parse/value/known-value-parser.ts +4 -0
- package/src/parse/value/null-parser.ts +4 -0
- package/src/parse/value/number-parser.ts +4 -0
- package/src/parse/value/text-parser.ts +4 -0
- package/src/pattern/index.ts +4 -0
- package/src/pattern/match-registry.ts +4 -0
- package/src/pattern/matcher.ts +4 -0
- package/src/pattern/meta/and-pattern.ts +4 -0
- package/src/pattern/meta/any-pattern.ts +4 -0
- package/src/pattern/meta/capture-pattern.ts +4 -0
- package/src/pattern/meta/index.ts +4 -0
- package/src/pattern/meta/not-pattern.ts +4 -0
- package/src/pattern/meta/or-pattern.ts +4 -0
- package/src/pattern/meta/repeat-pattern.ts +4 -0
- package/src/pattern/meta/search-pattern.ts +4 -0
- package/src/pattern/meta/sequence-pattern.ts +4 -0
- package/src/pattern/structure/array-pattern/assigner.ts +4 -0
- package/src/pattern/structure/array-pattern/backtrack.ts +4 -0
- package/src/pattern/structure/array-pattern/helpers.ts +4 -0
- package/src/pattern/structure/array-pattern/index.ts +4 -0
- package/src/pattern/structure/index.ts +4 -0
- package/src/pattern/structure/map-pattern.ts +4 -0
- package/src/pattern/structure/tagged-pattern.ts +4 -0
- package/src/pattern/value/bool-pattern.ts +4 -0
- package/src/pattern/value/bytes-utils.ts +4 -0
- package/src/pattern/value/bytestring-pattern.ts +4 -0
- package/src/pattern/value/date-pattern.ts +4 -0
- package/src/pattern/value/digest-pattern.ts +4 -0
- package/src/pattern/value/index.ts +4 -0
- package/src/pattern/value/known-value-pattern.ts +4 -0
- package/src/pattern/value/null-pattern.ts +4 -0
- package/src/pattern/value/number-pattern.ts +4 -0
- package/src/pattern/value/text-pattern.ts +4 -0
- package/src/pattern/vm.ts +4 -0
- package/src/quantifier.ts +4 -0
- package/src/reluctance.ts +4 -0
package/package.json
CHANGED
|
@@ -1,29 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bcts/dcbor-pattern",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.21",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Pattern matching for dCBOR (Deterministic CBOR) for TypeScript",
|
|
6
6
|
"license": "BSD-2-Clause-Patent",
|
|
7
|
-
"
|
|
8
|
-
{
|
|
9
|
-
"name": "Leonardo Custodio",
|
|
10
|
-
"email": "leonardo.custodio@parity.io",
|
|
11
|
-
"url": "https://github.com/leonardocustodio"
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"name": "Karim Jedda",
|
|
15
|
-
"email": "karim@parity.io",
|
|
16
|
-
"url": "https://github.com/KarimJedda"
|
|
17
|
-
}
|
|
18
|
-
],
|
|
7
|
+
"author": "Parity Technologies <admin@parity.io> (https://parity.io)",
|
|
19
8
|
"homepage": "https://bcts.dev",
|
|
20
9
|
"repository": {
|
|
21
10
|
"type": "git",
|
|
22
|
-
"url": "git+https://github.com/
|
|
11
|
+
"url": "git+https://github.com/paritytech/bcts.git",
|
|
23
12
|
"directory": "packages/dcbor-pattern"
|
|
24
13
|
},
|
|
25
14
|
"bugs": {
|
|
26
|
-
"url": "https://github.com/
|
|
15
|
+
"url": "https://github.com/paritytech/bcts/issues"
|
|
27
16
|
},
|
|
28
17
|
"main": "dist/index.cjs",
|
|
29
18
|
"module": "dist/index.mjs",
|
|
@@ -68,17 +57,17 @@
|
|
|
68
57
|
"devDependencies": {
|
|
69
58
|
"@bcts/eslint": "^0.1.0",
|
|
70
59
|
"@bcts/tsconfig": "^0.1.0",
|
|
71
|
-
"@types/node": "^25.2
|
|
72
|
-
"eslint": "^
|
|
60
|
+
"@types/node": "^25.3.2",
|
|
61
|
+
"eslint": "^10.0.2",
|
|
73
62
|
"tsdown": "^0.20.3",
|
|
74
|
-
"typedoc": "^0.28.
|
|
63
|
+
"typedoc": "^0.28.17",
|
|
75
64
|
"typescript": "^5.9.3",
|
|
76
65
|
"vitest": "^4.0.18"
|
|
77
66
|
},
|
|
78
67
|
"dependencies": {
|
|
79
|
-
"@bcts/dcbor": "^1.0.0-alpha.
|
|
80
|
-
"@bcts/dcbor-parse": "^1.0.0-alpha.
|
|
81
|
-
"@bcts/components": "^1.0.0-alpha.
|
|
82
|
-
"@bcts/known-values": "^1.0.0-alpha.
|
|
68
|
+
"@bcts/dcbor": "^1.0.0-alpha.21",
|
|
69
|
+
"@bcts/dcbor-parse": "^1.0.0-alpha.21",
|
|
70
|
+
"@bcts/components": "^1.0.0-alpha.21",
|
|
71
|
+
"@bcts/known-values": "^1.0.0-alpha.21"
|
|
83
72
|
}
|
|
84
73
|
}
|
package/src/error.ts
CHANGED
package/src/format.ts
CHANGED
package/src/index.ts
CHANGED
package/src/interval.ts
CHANGED
package/src/parse/index.ts
CHANGED
package/src/parse/meta/index.ts
CHANGED
package/src/parse/token.ts
CHANGED
package/src/parse/value/index.ts
CHANGED
package/src/pattern/index.ts
CHANGED
package/src/pattern/matcher.ts
CHANGED
package/src/pattern/vm.ts
CHANGED