yuppi 1.3.7 → 1.3.8

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 +4 -4
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -15,11 +15,11 @@
15
15
  [URI]: ./src/patterns/URI.pattern.ts
16
16
  [Username]: ./src/patterns/Username.pattern.ts
17
17
  [YuppiOptionsDefault]: ./src/defaults/YuppiOptions.default.ts
18
- [AnyObject]: https://github.com/jquense/yup/blob/master/src/util/objectTypes.ts#L7
19
- [JSONSchema]: https://github.com/sinclairzx81/typebox/blob/master/src/type/object/object.ts#L78
18
+ [AnyObject]: ./src/types/AnyObject.type.ts
19
+ [JSONSchema]: ./src/types/JSONSchema.type.ts
20
20
  [Schema]: ./src/types/Schema.type.ts
21
- [ValidateOptions]: https://github.com/jquense/yup/blob/master/src/types.ts#L48
22
- [ValidationError]: https://github.com/jquense/yup/blob/master/src/ValidationError.ts#L53
21
+ [ValidateOptions]: ./src/types/ValidateOptions.type.ts
22
+ [ValidationError]: ./src/types/ValidationError.type.ts
23
23
  [YuppiOptions]: ./src/types/YuppiOptions.type.ts
24
24
 
25
25
  <div align="center">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yuppi",
3
- "version": "1.3.7",
3
+ "version": "1.3.8",
4
4
  "description": "Schemas that can be converted to Yup and JSON Schema.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/keift/yuppi",
@@ -17,13 +17,13 @@
17
17
  "dependencies": {
18
18
  "@sinclair/typebox": "^0.34.41",
19
19
  "@types/lodash.merge": "^4.6.9",
20
- "@types/node": "^24.8.1",
20
+ "@types/node": "^24.9.1",
21
21
  "json-schema-to-typescript": "^15.0.4",
22
22
  "lodash.merge": "^4.6.2",
23
23
  "yup": "^1.7.1"
24
24
  },
25
25
  "devDependencies": {
26
- "neatlint": "^1.1.20",
26
+ "neatlint": "^1.1.21",
27
27
  "prettier": "^3.6.2",
28
28
  "tsup": "^8.5.0"
29
29
  },