@clementine-solutions/jane-io 1.0.4 → 1.0.6

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/README.md +7 -6
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Jane IO
1
+ # Jane-IO
2
2
 
3
3
  [![pipeline status](https://gitlab.com/clementine-solution/open-source/jane-io/badges/main/pipeline.svg)](https://gitlab.com/clementine-solution/open-source/jane-io/-/commits/main)
4
4
  [![coverage report](https://gitlab.com/clementine-solution/open-source/jane-io/badges/main/coverage.svg)](https://gitlab.com/clementine-solution/open-source/jane-io/-/commits/main)
@@ -7,7 +7,7 @@
7
7
 
8
8
  > A clarity-first boundary system for shaping, validating, and transforming data with full introspection and policy control.
9
9
 
10
- Jane IO is a TypeScript-first data validation library that emphasizes **explicit design**, **runtime safety**, and **comprehensive observability**. Unlike traditional validators, Jane treats data processing as a multi-stage pipeline with policy-driven decision making.
10
+ Jane-IO is a TypeScript-first data validation library that emphasizes **explicit design**, **runtime safety**, and **comprehensive observability**. Unlike traditional validators, Jane treats data processing as a multi-stage pipeline with policy-driven decision making.
11
11
 
12
12
  ## Key Features
13
13
 
@@ -38,9 +38,10 @@ pnpm add @clementine-solutions/jane-io
38
38
  import { jane } from '@clementine-solutions/jane-io';
39
39
 
40
40
  // Simple validation
41
- const result = await jane.value("hello@example.com")
42
- .parse("string")
43
- .matches(/^[^\s@]+@[^\s@]+\.[^\s@]+$/)
41
+ const result = await jane.value(37)
42
+ .parse("numeric")
43
+ .integer()
44
+ .min(21)
44
45
  .run();
45
46
 
46
47
  if (result.ok) {
@@ -129,4 +130,4 @@ Jane IO is built with care for the developer experience and runtime safety. Spec
129
130
 
130
131
  ---
131
132
 
132
- **Jane IO** - Data validation with clarity and confidence.
133
+ **Jane IO** - Observable data validation with clarity and confidence.
package/package.json CHANGED
@@ -106,7 +106,8 @@
106
106
  },
107
107
  "publishConfig": {
108
108
  "access": "public",
109
- "registry": "https://registry.npmjs.org/"
109
+ "registry": "https://registry.npmjs.org/",
110
+ "ignoreScripts": true
110
111
  },
111
- "version": "1.0.4"
112
+ "version": "1.0.6"
112
113
  }