diff --git a/.github/.keep b/.github/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 7d9b211..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Build -on: [push, pull_request] -jobs: - TypeBox: - runs-on: ${{ matrix.os }} - strategy: - matrix: - node: [16.x, 18.x, 20.x] - os: [ubuntu-latest, windows-latest, macOS-latest] - steps: - - uses: actions/checkout@v3 - - name: Install Node - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node }} - - - name: Install Packages - run: npm install - - - name: Build Library - run: npm run build - - name: Test Library - run: npm run test \ No newline at end of file diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml deleted file mode 100644 index d43b3bc..0000000 --- a/.github/workflows/nightly.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Build Nightly -on: - schedule: - - cron: '0 18 * * *' # 6pm Daily -jobs: - TypeBox: - runs-on: ${{ matrix.os }} - strategy: - matrix: - node: [20.x] - os: [ubuntu-latest] - steps: - - uses: actions/checkout@v3 - - name: Install Node - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node }} - - - name: Install Packages - run: npm install - - - name: Install TypeScript Latest - run: npm install typescript@latest - - name: Build TypeBox - run: npm run build - - - name: Install TypeScript Next - run: npm install typescript@next - - name: Build TypeBox - run: npm run build \ No newline at end of file diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index 4288eb1..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: Publish - -on: - push: - tags: - - '[0-9]+.[0-9]+.[0-9]+*' # Semver-Tag - -permissions: - id-token: write # Required for OIDC - contents: read - -jobs: - Publish: - runs-on: ubuntu-latest - steps: - - # Checkout - - uses: actions/checkout@v4 - - # Node - - uses: actions/setup-node@v4 - with: - node-version: '20' - registry-url: 'https://registry.npmjs.org' - - # Update - - name: Update - run: npm install npm -g - - # Install - - name: Build - run: npm install - - # Build - - name: Build - run: npm run build - - # Publish - - name: Publish - run: npm publish sinclair-typebox-*.tgz --provenance --access public - working-directory: target/build \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index df31827..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "files.exclude": { - "node_modules": true, - "package-lock.json": true - }, - "editor.suggest.showStatusBar": false, - "typescript.tsdk": "node_modules\\typescript\\lib" -} \ No newline at end of file diff --git a/changelog/0.17.1.md b/changelog/0.17.1.md index b458c0b..75c1c18 100644 --- a/changelog/0.17.1.md +++ b/changelog/0.17.1.md @@ -1,4 +1,4 @@ -## [0.17.1](https://www.npmjs.com/package/@sinclair/typebox/v/0.17.1) +## [0.17.1](https://www.npmjs.com/package/@alkdev/typebox/v/0.17.1) - Remove default `additionalProperties: false` constraint from all object schemas. diff --git a/changelog/0.17.4.md b/changelog/0.17.4.md index 07a8cf5..5f5595e 100644 --- a/changelog/0.17.4.md +++ b/changelog/0.17.4.md @@ -1,4 +1,4 @@ -## [0.17.4](https://www.npmjs.com/package/@sinclair/typebox/v/0.17.4) +## [0.17.4](https://www.npmjs.com/package/@alkdev/typebox/v/0.17.4) Changes: diff --git a/changelog/0.17.6.md b/changelog/0.17.6.md index 291ea5f..4ad2227 100644 --- a/changelog/0.17.6.md +++ b/changelog/0.17.6.md @@ -1,4 +1,4 @@ -## [0.17.6](https://www.npmjs.com/package/@sinclair/typebox/v/0.17.6) +## [0.17.6](https://www.npmjs.com/package/@alkdev/typebox/v/0.17.6) Changes: diff --git a/changelog/0.18.0.md b/changelog/0.18.0.md index 88a7d4f..9baa7b6 100644 --- a/changelog/0.18.0.md +++ b/changelog/0.18.0.md @@ -1,4 +1,4 @@ -## [0.18.0](https://www.npmjs.com/package/@sinclair/typebox/v/0.18.0) +## [0.18.0](https://www.npmjs.com/package/@alkdev/typebox/v/0.18.0) Changes: @@ -14,7 +14,7 @@ TypeBox now targets JSON schema draft `2019-09` for expressing `Type.Intersect(. TypeBox has deprecated `Type.Dict(...)` in favor of the more generic `Type.Record(...)`. Where as `Type.Dict(...)` was previously expressed with `additionalProperties: { ... }`, `Type.Record(...)` is expressed with `patternProperties` and supports both `string` and `number` indexer keys. Additionally, `Type.Record(...)` supports string union arguments. This is analogous to TypeScript's utility record type `Record<'a' | 'b' | 'c', T>`. -## [0.17.7](https://www.npmjs.com/package/@sinclair/typebox/v/0.17.7) +## [0.17.7](https://www.npmjs.com/package/@alkdev/typebox/v/0.17.7) Changes: diff --git a/changelog/0.18.1.md b/changelog/0.18.1.md index 1a0bbe7..8453c85 100644 --- a/changelog/0.18.1.md +++ b/changelog/0.18.1.md @@ -1,4 +1,4 @@ -## [0.18.1](https://www.npmjs.com/package/@sinclair/typebox/v/0.18.1) +## [0.18.1](https://www.npmjs.com/package/@alkdev/typebox/v/0.18.1) - Function `Type.Enum(...)` now expressed with `anyOf`. This to remove the `allowUnionTypes` configuration required to use `enum` with in AJV strict. - Function `Type.Rec(...)` now takes a required `$id` as the first parameter. diff --git a/changelog/0.19.0.md b/changelog/0.19.0.md index 377ccdb..3f2cd7d 100644 --- a/changelog/0.19.0.md +++ b/changelog/0.19.0.md @@ -1,4 +1,4 @@ -## [0.19.0](https://www.npmjs.com/package/@sinclair/typebox/v/0.19.0) +## [0.19.0](https://www.npmjs.com/package/@alkdev/typebox/v/0.19.0) Updates: diff --git a/changelog/0.20.0.md b/changelog/0.20.0.md index 80a01da..8a80646 100644 --- a/changelog/0.20.0.md +++ b/changelog/0.20.0.md @@ -1,4 +1,4 @@ -## [0.20.0](https://www.npmjs.com/package/@sinclair/typebox/v/0.20.0) +## [0.20.0](https://www.npmjs.com/package/@alkdev/typebox/v/0.20.0) Updates: diff --git a/changelog/0.20.1.md b/changelog/0.20.1.md index 2dfec12..9b98bce 100644 --- a/changelog/0.20.1.md +++ b/changelog/0.20.1.md @@ -1,4 +1,4 @@ -## [0.20.1](https://www.npmjs.com/package/@sinclair/typebox/v/0.20.1) +## [0.20.1](https://www.npmjs.com/package/@alkdev/typebox/v/0.20.1) Updates: diff --git a/changelog/0.21.0.md b/changelog/0.21.0.md index 31df5f7..dba57e2 100644 --- a/changelog/0.21.0.md +++ b/changelog/0.21.0.md @@ -1,4 +1,4 @@ -## [0.21.0](https://www.npmjs.com/package/@sinclair/typebox/v/0.21.0) +## [0.21.0](https://www.npmjs.com/package/@alkdev/typebox/v/0.21.0) Updates: diff --git a/changelog/0.21.2.md b/changelog/0.21.2.md index 12d31df..dfd073d 100644 --- a/changelog/0.21.2.md +++ b/changelog/0.21.2.md @@ -1,4 +1,4 @@ -## [0.21.2](https://www.npmjs.com/package/@sinclair/typebox/v/0.21.2) +## [0.21.2](https://www.npmjs.com/package/@alkdev/typebox/v/0.21.2) Updates: diff --git a/changelog/0.22.0.md b/changelog/0.22.0.md index f65eeeb..804bcee 100644 --- a/changelog/0.22.0.md +++ b/changelog/0.22.0.md @@ -1,4 +1,4 @@ -## [0.22.0](https://www.npmjs.com/package/@sinclair/typebox/v/0.22.0) +## [0.22.0](https://www.npmjs.com/package/@alkdev/typebox/v/0.22.0) Updates: diff --git a/changelog/0.23.0.md b/changelog/0.23.0.md index 5dce7d9..2cb8050 100644 --- a/changelog/0.23.0.md +++ b/changelog/0.23.0.md @@ -1,4 +1,4 @@ -## [0.23.0](https://www.npmjs.com/package/@sinclair/typebox/v/0.23.0) +## [0.23.0](https://www.npmjs.com/package/@alkdev/typebox/v/0.23.0) Updates: diff --git a/changelog/0.23.1.md b/changelog/0.23.1.md index 565f779..cddecf9 100644 --- a/changelog/0.23.1.md +++ b/changelog/0.23.1.md @@ -1,4 +1,4 @@ -## [0.23.1](https://www.npmjs.com/package/@sinclair/typebox/v/0.23.1) +## [0.23.1](https://www.npmjs.com/package/@alkdev/typebox/v/0.23.1) Updates: diff --git a/changelog/0.23.3.md b/changelog/0.23.3.md index bb89450..7c5d79d 100644 --- a/changelog/0.23.3.md +++ b/changelog/0.23.3.md @@ -1,4 +1,4 @@ -## [0.23.3](https://www.npmjs.com/package/@sinclair/typebox/v/0.23.3) +## [0.23.3](https://www.npmjs.com/package/@alkdev/typebox/v/0.23.3) Updates: diff --git a/changelog/0.24.0.md b/changelog/0.24.0.md index b433b58..3658b28 100644 --- a/changelog/0.24.0.md +++ b/changelog/0.24.0.md @@ -1,4 +1,4 @@ -## [0.24.0](https://www.npmjs.com/package/@sinclair/typebox/v/0.24.0) +## [0.24.0](https://www.npmjs.com/package/@alkdev/typebox/v/0.24.0) Changes: diff --git a/changelog/0.24.15.md b/changelog/0.24.15.md index 69745b8..d5d0618 100644 --- a/changelog/0.24.15.md +++ b/changelog/0.24.15.md @@ -1,4 +1,4 @@ -## [0.24.15](https://www.npmjs.com/package/@sinclair/typebox/v/0.24.15) +## [0.24.15](https://www.npmjs.com/package/@alkdev/typebox/v/0.24.15) Added: - `Conditional.Extends(...)` This enables TypeBox to conditionally map types inline with TypeScripts structural equivalence checks. Tested against TypeScript 4.7.4. diff --git a/changelog/0.24.44.md b/changelog/0.24.44.md index e5aac8b..0854ac5 100644 --- a/changelog/0.24.44.md +++ b/changelog/0.24.44.md @@ -1,4 +1,4 @@ -## [0.24.44](https://www.npmjs.com/package/@sinclair/typebox/v/0.24.44) +## [0.24.44](https://www.npmjs.com/package/@alkdev/typebox/v/0.24.44) Updates: - [189](https://github.com/sinclairzx81/typebox/pull/189) Both `Value.Error(T, value)` and `TypeCheck.Error(value)` now return an iterator for validation errors. diff --git a/changelog/0.24.49.md b/changelog/0.24.49.md index e0fd0a6..29eccda 100644 --- a/changelog/0.24.49.md +++ b/changelog/0.24.49.md @@ -1,4 +1,4 @@ -## [0.24.49](https://www.npmjs.com/package/@sinclair/typebox/v/0.24.49) +## [0.24.49](https://www.npmjs.com/package/@alkdev/typebox/v/0.24.49) Updates: diff --git a/changelog/0.24.6.md b/changelog/0.24.6.md index b329dec..1d220e8 100644 --- a/changelog/0.24.6.md +++ b/changelog/0.24.6.md @@ -1,13 +1,13 @@ -## [0.24.6](https://www.npmjs.com/package/@sinclair/typebox/v/0.24.6) +## [0.24.6](https://www.npmjs.com/package/@alkdev/typebox/v/0.24.6) Added: -- TypeBox now offers a `TypeGuard` module for structurally checking TypeBox schematics. This module can be used in runtime type reflection scenarios where it's helpful to test a schema is of a particular form. This module can be imported under the `@sinclair/typebox/guard` import path. +- TypeBox now offers a `TypeGuard` module for structurally checking TypeBox schematics. This module can be used in runtime type reflection scenarios where it's helpful to test a schema is of a particular form. This module can be imported under the `@alkdev/typebox/guard` import path. Example: ```typescript -import { TypeGuard } from '@sinclair/typebox/guard' +import { TypeGuard } from '@alkdev/typebox/guard' const T: any = {} // T is any diff --git a/changelog/0.24.8.md b/changelog/0.24.8.md index 05f1576..8bbf5a2 100644 --- a/changelog/0.24.8.md +++ b/changelog/0.24.8.md @@ -1,4 +1,4 @@ -## [0.24.8](https://www.npmjs.com/package/@sinclair/typebox/v/0.24.8) +## [0.24.8](https://www.npmjs.com/package/@alkdev/typebox/v/0.24.8) Added: - `Value.Cast(T, value)` structurally casts a value into another form while retaining information within the original value. diff --git a/changelog/0.25.0.md b/changelog/0.25.0.md index 5085679..56cf7ca 100644 --- a/changelog/0.25.0.md +++ b/changelog/0.25.0.md @@ -1,4 +1,4 @@ -## [0.25.0](https://www.npmjs.com/package/@sinclair/typebox/v/0.25.0) +## [0.25.0](https://www.npmjs.com/package/@alkdev/typebox/v/0.25.0) Updates: diff --git a/changelog/0.25.10.md b/changelog/0.25.10.md index fc1d3d5..99d9e3e 100644 --- a/changelog/0.25.10.md +++ b/changelog/0.25.10.md @@ -1,4 +1,4 @@ -## [0.25.10](https://www.npmjs.com/package/@sinclair/typebox/v/0.25.10) +## [0.25.10](https://www.npmjs.com/package/@alkdev/typebox/v/0.25.10) Updates: diff --git a/changelog/0.25.11.md b/changelog/0.25.11.md index ad5144b..8024b57 100644 --- a/changelog/0.25.11.md +++ b/changelog/0.25.11.md @@ -1,4 +1,4 @@ -## [0.25.11](https://www.npmjs.com/package/@sinclair/typebox/v/0.25.11) +## [0.25.11](https://www.npmjs.com/package/@alkdev/typebox/v/0.25.11) Updates: diff --git a/changelog/0.25.18.md b/changelog/0.25.18.md index d762e17..7156c8a 100644 --- a/changelog/0.25.18.md +++ b/changelog/0.25.18.md @@ -1,4 +1,4 @@ -## [0.25.18](https://www.npmjs.com/package/@sinclair/typebox/v/0.25.18) +## [0.25.18](https://www.npmjs.com/package/@alkdev/typebox/v/0.25.18) Updates: diff --git a/changelog/0.25.22.md b/changelog/0.25.22.md index 3e92403..399b06d 100644 --- a/changelog/0.25.22.md +++ b/changelog/0.25.22.md @@ -1,4 +1,4 @@ -## [0.25.22](https://www.npmjs.com/package/@sinclair/typebox/v/0.25.22) +## [0.25.22](https://www.npmjs.com/package/@alkdev/typebox/v/0.25.22) Updates: diff --git a/changelog/0.25.23.md b/changelog/0.25.23.md index 76e9304..b263c49 100644 --- a/changelog/0.25.23.md +++ b/changelog/0.25.23.md @@ -1,4 +1,4 @@ -## [0.25.23](https://www.npmjs.com/package/@sinclair/typebox/v/0.25.23) +## [0.25.23](https://www.npmjs.com/package/@alkdev/typebox/v/0.25.23) Updates: diff --git a/changelog/0.25.24.md b/changelog/0.25.24.md index f45dc03..ad128d3 100644 --- a/changelog/0.25.24.md +++ b/changelog/0.25.24.md @@ -1,4 +1,4 @@ -## [0.25.24](https://www.npmjs.com/package/@sinclair/typebox/v/0.25.23) +## [0.25.24](https://www.npmjs.com/package/@alkdev/typebox/v/0.25.23) Updates: diff --git a/changelog/0.25.9.md b/changelog/0.25.9.md index c0155a8..869c525 100644 --- a/changelog/0.25.9.md +++ b/changelog/0.25.9.md @@ -1,4 +1,4 @@ -## [0.25.9](https://www.npmjs.com/package/@sinclair/typebox/v/0.25.9) +## [0.25.9](https://www.npmjs.com/package/@alkdev/typebox/v/0.25.9) Updates: diff --git a/changelog/0.26.0.md b/changelog/0.26.0.md index 34b69e8..0739d61 100644 --- a/changelog/0.26.0.md +++ b/changelog/0.26.0.md @@ -1,4 +1,4 @@ -## [0.26.0](https://www.npmjs.com/package/@sinclair/typebox/v/0.26.0) +## [0.26.0](https://www.npmjs.com/package/@alkdev/typebox/v/0.26.0) ## Overview @@ -36,7 +36,7 @@ Revision 0.26.0 is a milestone release for the TypeBox project and requires a mi Revision 0.26.0 exports a new type builder called `StandardType`. This builder only allows for the construction JSON Schema compliant types by omitting all Extended types. ```typescript -import { StandardType as Type, Static } from '@sinclair/typebox' +import { StandardType as Type, Static } from '@alkdev/typebox' const T = Type.Date() // error: no such function ``` @@ -172,7 +172,7 @@ const All = [...Value.Errors(T, 'foo')] // const All = [{ path: '', Revision 0.26.0 adds a `.Code()` function to the `TypeCompiler` to enable code generation without JIT evaluation. ```typescript -import { TypeCompiler } from '@sinclair/typebox/compiler' +import { TypeCompiler } from '@alkdev/typebox/compiler' const T = Type.Object({ x: Type.Number(), @@ -361,12 +361,12 @@ const V = Value.Cast(T, Value.Convert(T, '42')) // const V = 42 - 0.26.0 ## Moved TypeGuard Module -The `TypeGuard` is now imported via the `@sinclair/typebox` module. This move is due to the TypeBox compositor internally using the guard when constructing types. +The `TypeGuard` is now imported via the `@alkdev/typebox` module. This move is due to the TypeBox compositor internally using the guard when constructing types. ```typescript -import { TypeGuard } from '@sinclair/typebox/guard' // 0.25.0 +import { TypeGuard } from '@alkdev/typebox/guard' // 0.25.0 -import { TypeGuard } from '@sinclair/typebox' // 0.26.0 +import { TypeGuard } from '@alkdev/typebox' // 0.26.0 ``` @@ -376,9 +376,9 @@ import { TypeGuard } from '@sinclair/typebox' // 0.26.0 The `Format` module has been renamed to `FormatRegistry` and moved to the `typebox.ts` module. ```typescript -import { Format } from '@sinclair/typebox/format' // 0.25.0 +import { Format } from '@alkdev/typebox/format' // 0.25.0 -import { FormatRegistry } from '@sinclair/typebox' // 0.26.0 +import { FormatRegistry } from '@alkdev/typebox' // 0.26.0 ``` @@ -388,7 +388,7 @@ import { FormatRegistry } from '@sinclair/typebox' // 0.26.0 The `Format` module has been renamed to `FormatRegistry` and moved to the `typebox.ts` module. ```typescript -import { Custom } from '@sinclair/typebox/format' // 0.25.0 +import { Custom } from '@alkdev/typebox/format' // 0.25.0 -import { TypeRegistry } from '@sinclair/typebox' // 0.26.0 +import { TypeRegistry } from '@alkdev/typebox' // 0.26.0 ``` \ No newline at end of file diff --git a/changelog/0.26.2.md b/changelog/0.26.2.md index 052f4bd..1ba0cd3 100644 --- a/changelog/0.26.2.md +++ b/changelog/0.26.2.md @@ -1,4 +1,4 @@ -## [0.26.2](https://www.npmjs.com/package/@sinclair/typebox/v/0.26.2) +## [0.26.2](https://www.npmjs.com/package/@alkdev/typebox/v/0.26.2) Updates: diff --git a/changelog/0.27.0.md b/changelog/0.27.0.md index be87bbf..60a7c09 100644 --- a/changelog/0.27.0.md +++ b/changelog/0.27.0.md @@ -1,4 +1,4 @@ -## [0.27.0](https://www.npmjs.com/package/@sinclair/typebox/v/0.27.0) +## [0.27.0](https://www.npmjs.com/package/@alkdev/typebox/v/0.27.0) ## Overview @@ -75,7 +75,7 @@ The following generates a 8-bit binary sequence for the given expression. ```typescript -import { TemplateLiteralParser, TemplateLiteralGenerator, TemplateLiteralFinite } from '@sinclair/typebox' +import { TemplateLiteralParser, TemplateLiteralGenerator, TemplateLiteralFinite } from '@alkdev/typebox' const Bit = `(0|1)` // bit union const Byte = `${Bit}${Bit}${Bit}${Bit}${Bit}${Bit}${Bit}${Bit}` // byte sequence diff --git a/changelog/0.27.1.md b/changelog/0.27.1.md index eba9126..fbf0da2 100644 --- a/changelog/0.27.1.md +++ b/changelog/0.27.1.md @@ -1,4 +1,4 @@ -## [0.27.1](https://www.npmjs.com/package/@sinclair/typebox/v/0.27.1) +## [0.27.1](https://www.npmjs.com/package/@alkdev/typebox/v/0.27.1) ## Updates diff --git a/changelog/0.28.0.md b/changelog/0.28.0.md index 3ed1851..36fb435 100644 --- a/changelog/0.28.0.md +++ b/changelog/0.28.0.md @@ -1,4 +1,4 @@ -## [0.28.0](https://www.npmjs.com/package/@sinclair/typebox/v/0.28.0) +## [0.28.0](https://www.npmjs.com/package/@alkdev/typebox/v/0.28.0) ## Overview diff --git a/changelog/0.28.3.md b/changelog/0.28.3.md index 876b7e3..9453b07 100644 --- a/changelog/0.28.3.md +++ b/changelog/0.28.3.md @@ -1,4 +1,4 @@ -## [0.28.3](https://www.npmjs.com/package/@sinclair/typebox/v/0.28.3) +## [0.28.3](https://www.npmjs.com/package/@alkdev/typebox/v/0.28.3) ## Overview diff --git a/changelog/0.29.0.md b/changelog/0.29.0.md index 1291219..f000efd 100644 --- a/changelog/0.29.0.md +++ b/changelog/0.29.0.md @@ -1,4 +1,4 @@ -## [0.29.0](https://www.npmjs.com/package/@sinclair/typebox/v/0.29.0) +## [0.29.0](https://www.npmjs.com/package/@alkdev/typebox/v/0.29.0) ## Overview diff --git a/changelog/0.29.2.md b/changelog/0.29.2.md index f87cfc2..6d73a22 100644 --- a/changelog/0.29.2.md +++ b/changelog/0.29.2.md @@ -1,4 +1,4 @@ -## [0.29.2](https://www.npmjs.com/package/@sinclair/typebox/v/0.29.2) +## [0.29.2](https://www.npmjs.com/package/@alkdev/typebox/v/0.29.2) ## Overview diff --git a/changelog/0.30.0.md b/changelog/0.30.0.md index 31899d3..5304b08 100644 --- a/changelog/0.30.0.md +++ b/changelog/0.30.0.md @@ -1,4 +1,4 @@ -## [0.30.0](https://www.npmjs.com/package/@sinclair/typebox/v/0.30.0) +## [0.30.0](https://www.npmjs.com/package/@alkdev/typebox/v/0.30.0) ## Overview @@ -151,13 +151,13 @@ The top level `Value.*` namespace will remain on all subsequent versions of Type ```typescript // Revision 0.29.0 // -import { Value } from '@sinclair/typebox/value' // Value.* namespace +import { Value } from '@alkdev/typebox/value' // Value.* namespace const A = Value.Create(Type.String()) // Revision 0.30.0 // -import { Create } from '@sinclair/typebox/value/create' // Only Create() +import { Create } from '@alkdev/typebox/value/create' // Only Create() const A = Create(Type.String()) ``` @@ -246,7 +246,7 @@ Revision 0.30.0 offers an external code generation API tool which can be used to [TypeBox-Code Project](https://github.com/sinclairzx81/typebox-codegen) ```typescript -import * as Codegen from '@sinclair/typebox-codegen' +import * as Codegen from '@alkdev/typebox-codegen' const Code = Codegen.TypeScriptToTypeBox.Generate(` type T = { x: number, y: number, z: number } @@ -256,7 +256,7 @@ console.log(Code) // Output: // -// import { Type, Static } from '@sinclair/typebox' +// import { Type, Static } from '@alkdev/typebox' // // type T = Static // const T = Type.Object({ @@ -272,7 +272,7 @@ console.log(Code) Revision 0.30.0 includes a reference implementation for JSON Type Definition (RFC 8927). This specification is currently under consideration for inclusion in the TypeBox library as an alternative schema representation for nominal type systems. The implementation currently contains all types expressed in the JSON Type Definition spec, but omits constraints such and `minimum` and `maximum` values (which are not formally represented in the specification). -The implementation is offered as a single file which can be copied in to projects with TypeBox installed. This implementation may be enhanced over the next few revisions (with some potential to implement mapping types such as partial, required, omit, pick, keyof). This specification will be considered for inclusion under `@sinclair/typebox/typedef` if there is enough interest. +The implementation is offered as a single file which can be copied in to projects with TypeBox installed. This implementation may be enhanced over the next few revisions (with some potential to implement mapping types such as partial, required, omit, pick, keyof). This specification will be considered for inclusion under `@alkdev/typebox/typedef` if there is enough interest. ```typescript import { Type } from './typedef' // from: examples/typedef/typedef.ts @@ -408,7 +408,7 @@ const T = Type.String({ pattern: /abc/.source }) // Standard Type For Unicode (UTF-16) support on 0.30.0, the recommendation is to continue using user defined formats. ```typescript -import { Type, FormatRegistry } from '@sinclair/typebox' +import { Type, FormatRegistry } from '@alkdev/typebox' FormatRegistry.Set('emoji', value => /|\p{Extended_Pictographic}/gu.test(value)) diff --git a/changelog/0.31.0.md b/changelog/0.31.0.md index 4dc83aa..8cb7c76 100644 --- a/changelog/0.31.0.md +++ b/changelog/0.31.0.md @@ -1,4 +1,4 @@ -## [0.31.0](https://www.npmjs.com/package/@sinclair/typebox/v/0.31.0) +## [0.31.0](https://www.npmjs.com/package/@alkdev/typebox/v/0.31.0) ## Overview @@ -30,7 +30,7 @@ Revision 0.31.0 includes a new codec system referred to as Transform types. A Tr The following shows a Transform type which increments and decrements a number. ```typescript -import { Value } from '@sinclair/typebox/value' +import { Value } from '@alkdev/typebox/value' const T = Type.Transform(Type.Number()) // const T = { .Decode(value => value + 1) // type: 'number', @@ -191,14 +191,14 @@ Revision 0.31.0 updates the inference strategy for Record types and generalizes ```typescript // 0.30.0 // -import { RecordKey, TSchema } from '@sinclair/typebox' +import { RecordKey, TSchema } from '@alkdev/typebox' function StrictRecord(K: K, T: T) { return Type.Record(K, T, { additionalProperties: false }) // Error: RecordKey unresolvable to overload } // 0.31.0 // -import { TSchema } from '@sinclair/typebox' +import { TSchema } from '@alkdev/typebox' function StrictRecord(K: K, T: T) { return Type.Record(K, T, { additionalProperties: false }) // Ok: dynamically mapped @@ -218,8 +218,8 @@ const C = StrictRecord(Type.BigInt(), Type.Null()) // const C: TNeve Revision 0.31.0 updates all errors thrown by TypeBox to extend the sub type `TypeBoxError`. This can be used to help narrow down the source of errors in `try/catch` blocks. ```typescript -import { Type, TypeBoxError } from '@sinclair/typebox' -import { Value } from '@sinclair/typebox/value' +import { Type, TypeBoxError } from '@alkdev/typebox' +import { Value } from '@alkdev/typebox/value' try { const A = Value.Decode(Type.Number(), 'hello') @@ -237,7 +237,7 @@ try { Revision 0.31.0 adds functionality to remap error messages with the TypeSystemErrorFunction. This function is invoked whenever a validation error is generated in TypeBox. The following is an example of a custom TypeSystemErrorFunction using some of the messages TypeBox generates by default. TypeBox also provides the DefaultErrorFunction which can be used for fallthrough cases. ```typescript -import { TypeSystemErrorFunction, DefaultErrorFunction } from '@sinclair/typebox/system' +import { TypeSystemErrorFunction, DefaultErrorFunction } from '@alkdev/typebox/system' // Example CustomErrorFunction export function CustomErrorFunction(schema: Types.TSchema, errorType: ValueErrorType) { @@ -317,13 +317,13 @@ Revision 0.31.0 moves the `TypeSystem.Policy` configurations into a new type nam ```typescript // Revision 0.30.0 // -import { TypeSystem } from '@sinclair/typebox/system' +import { TypeSystem } from '@alkdev/typebox/system' TypeSystem.AllowNaN = true // Revision 0.31.0 // -import { TypeSystemPolicy } from '@sinclair/typebox/system' +import { TypeSystemPolicy } from '@alkdev/typebox/system' TypeSystemPolicy.AllowNaN = true diff --git a/changelog/0.32.0.md b/changelog/0.32.0.md index d28eb5e..b7db570 100644 --- a/changelog/0.32.0.md +++ b/changelog/0.32.0.md @@ -39,7 +39,7 @@ - [Revision 0.32.1](https://github.com/sinclairzx81/typebox/pull/701) Specify default exports for Web Pack -## [0.32.0](https://www.npmjs.com/package/@sinclair/typebox/v/0.32.0) +## [0.32.0](https://www.npmjs.com/package/@alkdev/typebox/v/0.32.0) ## Overview @@ -79,9 +79,9 @@ This revision is a milestone revision for the TypeBox project. It has several br Revision 0.32.0 adds the ability to import types individually. ```typescript -import { Type, type Static } from '@sinclair/typebox' // classic - 37.0 kb minified +import { Type, type Static } from '@alkdev/typebox' // classic - 37.0 kb minified -import { Object, String, Number, type Static } from '@sinclair/typebox' // selective - 6.5 kb minified +import { Object, String, Number, type Static } from '@alkdev/typebox' // selective - 6.5 kb minified ``` @@ -91,9 +91,9 @@ import { Object, String, Number, type Static } from '@sinclair/typebox' // selec Revision 0.32.0 adds the ability to import value functions from the `/value` module path. ```typescript -import { Value } from '@sinclair/typebox/value' // classic - 61.5 kb minified +import { Value } from '@alkdev/typebox/value' // classic - 61.5 kb minified -import { Check } from '@sinclair/typebox/value' // selective - 18.2 kb minified +import { Check } from '@alkdev/typebox/value' // selective - 18.2 kb minified ``` ### CommonJS and ESM @@ -383,7 +383,7 @@ The following shows the changes from 0.31.0 to 0.32.0. ```typescript // Revision 0.31.0 -import { TypeSystemErrorFunction } from '@sinclair/typebox/system' +import { TypeSystemErrorFunction } from '@alkdev/typebox/system' TypeSystemErrorFunction.Set((schema, errorType) => { @@ -392,7 +392,7 @@ TypeSystemErrorFunction.Set((schema, errorType) => { // Revision 0.32.0 -import { SetErrorFunction } from '@sinclair/typebox/errors' +import { SetErrorFunction } from '@alkdev/typebox/errors' SetErrorFunction(({ schema, errorType, path, value }) => { // as destructured object @@ -416,13 +416,13 @@ Revision 0.32.0 renames the `Optional`, `Required` and `Transform` symbols to `O ```typescript // Revision 0.31.0 -import { Kind, Hint, Optional, Required, Transform } from '@sinclair/typebox' // these are symbols +import { Kind, Hint, Optional, Required, Transform } from '@alkdev/typebox' // these are symbols // Revision 0.32.0 import { Kind, Hint, OptionalKind, RequiredKind, TransformKind, // these are symbols Optional, Required, Transform // these are type imports -} from '@sinclair/typebox' +} from '@alkdev/typebox' ``` @@ -434,13 +434,13 @@ Revision 0.32.0 has a breaking interface change on the TypeGuard utility where t ```typescript // Revision 0.31.0 -import { TypeGuard, Kind } from '@sinclair/typebox' +import { TypeGuard, Kind } from '@alkdev/typebox' const R = TypeGuard.TString({ ... }) // Revision 0.32.0 -import { TypeGuard } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' const R = TypeGuard.IsString({ ... }) ``` @@ -454,11 +454,11 @@ The value submodule function import paths are unfortunately no longer supported. ```typescript // Revision 0.31.0 -import { Check } from '@sinclair/typebox/value/check' +import { Check } from '@alkdev/typebox/value/check' // Revision 0.32.0 -import { Check } from '@sinclair/typebox/value' +import { Check } from '@alkdev/typebox/value' ``` @@ -470,7 +470,7 @@ The TypeSystemErrorFunction has been replaced with SetErrorFunction which can be ```typescript // Revision 0.31.0 -import { TypeSystemErrorFunction, ValueErrorType, DefaultErrorFunction } from '@sinclair/typebox/system' +import { TypeSystemErrorFunction, ValueErrorType, DefaultErrorFunction } from '@alkdev/typebox/system' TypeSystemErrorFunction.Set((schema, errorType) => { // i18n override switch(errorType) { @@ -483,7 +483,7 @@ TypeSystemErrorFunction.Set((schema, errorType) => { // i18n override // Revision 0.32.0 -import { SetErrorFunction, ValueErrorType, DefaultErrorFunction } from '@sinclair/typebox/errors' +import { SetErrorFunction, ValueErrorType, DefaultErrorFunction } from '@alkdev/typebox/errors' SetErrorFunction((error) => { // i18n override switch(error.errorType) { diff --git a/changelog/0.34.0.md b/changelog/0.34.0.md index 55fa460..fed3f70 100644 --- a/changelog/0.34.0.md +++ b/changelog/0.34.0.md @@ -3,19 +3,21 @@ --- ### Revision Updates -- [Revision 0.34.48](https://github.com/sinclairzx81/typebox-legacy/pull/6) +- [Revision 0.34.49](https://github.com/sinclairzx81/sinclair-typebox/pull/11) + - Documentation Update - Link to 1.x. Updates in support of non-legacy 1.x compiler backport. +- [Revision 0.34.48](https://github.com/sinclairzx81/sinclair-typebox/pull/6) - Support Sparse Array Validation -- [Revision 0.34.47](https://github.com/sinclairzx81/typebox-legacy/pull/5) +- [Revision 0.34.47](https://github.com/sinclairzx81/sinclair-typebox/pull/5) - Annual License Update -- [Revision 0.34.46](https://github.com/sinclairzx81/typebox-legacy/pull/4) +- [Revision 0.34.46](https://github.com/sinclairzx81/sinclair-typebox/pull/4) - Ensure TObject Instances remain Covariant with TObject Types. -- [Revision 0.34.45](https://github.com/sinclairzx81/typebox-legacy/pull/2) - - Documentation Update - Resolve Readme Assets to TypeBox Legacy Repository. -- [Revision 0.34.44](https://github.com/sinclairzx81/typebox-legacy/pull/2) +- [Revision 0.34.45](https://github.com/sinclairzx81/sinclair-typebox/pull/2) + - Documentation Update - Resolve Readme Assets to Sinclair TypeBox Repository. +- [Revision 0.34.44](https://github.com/sinclairzx81/sinclair-typebox/pull/2) - Documentation Update - Rename Project to TypeBox 0.34.x -- [Revision 0.34.43](https://github.com/sinclairzx81/typebox-legacy/pull/1) - - Configure Package Homepage to refer to TypeBox Legacy Repository. -- [Revision 0.34.42](https://github.com/sinclairzx81/typebox-legacy) +- [Revision 0.34.43](https://github.com/sinclairzx81/sinclair-typebox/pull/1) + - Configure Package Homepage to refer to Sinclair TypeBox Repository. +- [Revision 0.34.42](https://github.com/sinclairzx81/sinclair-typebox) - Enable Forward Type Inference Compatibility with TypeBox V1 - [Revision 0.34.41](https://github.com/sinclairzx81/typebox/pull/1310) - Disable Node10 Module Resolution | TS7 Deprecation Warning. @@ -105,7 +107,7 @@ - [Revision 0.34.1](https://github.com/sinclairzx81/typebox/pull/1080) - Implement Computed Type Deref in Modules -## [0.34.0](https://www.npmjs.com/package/@sinclair/typebox/v/0.34.0) +## [0.34.0](https://www.npmjs.com/package/@alkdev/typebox/v/0.34.0) ## Overview @@ -175,10 +177,10 @@ Revision 0.34.0 introduces a new submodule for parsing TypeScript syntax directl As of 0.34.0, Syntax Types are available as an opt-in feature, with the parsing infrastructure adding approximately 10kb (minified) to the existing type builder. With further optimizations, this feature may be elevated to a top-level import in future updates to minimize bundling size. -To use Syntax Types, import them from the `@sinclair/typebox/syntax` path. +To use Syntax Types, import them from the `@alkdev/typebox/syntax` path. ```typescript -import { Parse } from '@sinclair/typebox/syntax' +import { Parse } from '@alkdev/typebox/syntax' // All primitive types are supported diff --git a/example/annotation/annotation.ts b/example/annotation/annotation.ts index bc9f9e6..9ca8771 100644 --- a/example/annotation/annotation.ts +++ b/example/annotation/annotation.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox +@alkdev/typebox The MIT License (MIT) @@ -26,7 +26,7 @@ THE SOFTWARE. ---------------------------------------------------------------------------*/ -import * as Types from '@sinclair/typebox' +import * as Types from '@alkdev/typebox' // ------------------------------------------------------------------- // Annotation diff --git a/example/collections/array.ts b/example/collections/array.ts index b0129d5..1a77773 100644 --- a/example/collections/array.ts +++ b/example/collections/array.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/collections +@alkdev/typebox/collections The MIT License (MIT) @@ -26,9 +26,9 @@ THE SOFTWARE. ---------------------------------------------------------------------------*/ -import { TypeCheck, TypeCompiler, ValueError } from '@sinclair/typebox/compiler' -import { TSchema, Static, TypeBoxError } from '@sinclair/typebox' -import { Value } from '@sinclair/typebox/value' +import { TypeCheck, TypeCompiler, ValueError } from '@alkdev/typebox/compiler' +import { TSchema, Static, TypeBoxError } from '@alkdev/typebox' +import { Value } from '@alkdev/typebox/value' // ---------------------------------------------------------------- // TypeArrayError diff --git a/example/collections/index.ts b/example/collections/index.ts index 4495c8c..14e8e2f 100644 --- a/example/collections/index.ts +++ b/example/collections/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/collections +@alkdev/typebox/collections The MIT License (MIT) diff --git a/example/collections/map.ts b/example/collections/map.ts index de92332..ff9e0ae 100644 --- a/example/collections/map.ts +++ b/example/collections/map.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/collections +@alkdev/typebox/collections The MIT License (MIT) @@ -26,9 +26,9 @@ THE SOFTWARE. ---------------------------------------------------------------------------*/ -import { TypeCheck, TypeCompiler, ValueError } from '@sinclair/typebox/compiler' -import { TSchema, Static, TypeBoxError } from '@sinclair/typebox' -import { Value } from '@sinclair/typebox/value' +import { TypeCheck, TypeCompiler, ValueError } from '@alkdev/typebox/compiler' +import { TSchema, Static, TypeBoxError } from '@alkdev/typebox' +import { Value } from '@alkdev/typebox/value' // ---------------------------------------------------------------- // TypeMapKeyError diff --git a/example/collections/set.ts b/example/collections/set.ts index ccd425e..fa03595 100644 --- a/example/collections/set.ts +++ b/example/collections/set.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/collections +@alkdev/typebox/collections The MIT License (MIT) @@ -26,9 +26,9 @@ THE SOFTWARE. ---------------------------------------------------------------------------*/ -import { TypeCheck, TypeCompiler, ValueError } from '@sinclair/typebox/compiler' -import { TSchema, Static, TypeBoxError } from '@sinclair/typebox' -import { Value } from '@sinclair/typebox/value' +import { TypeCheck, TypeCompiler, ValueError } from '@alkdev/typebox/compiler' +import { TSchema, Static, TypeBoxError } from '@alkdev/typebox' +import { Value } from '@alkdev/typebox/value' // ---------------------------------------------------------------- // Errors diff --git a/example/formats/date-time.ts b/example/formats/date-time.ts index ed8ac29..93cfa26 100644 --- a/example/formats/date-time.ts +++ b/example/formats/date-time.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/format +@alkdev/typebox/format The MIT License (MIT) diff --git a/example/formats/date.ts b/example/formats/date.ts index fc00634..01e03be 100644 --- a/example/formats/date.ts +++ b/example/formats/date.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/format +@alkdev/typebox/format The MIT License (MIT) diff --git a/example/formats/email.ts b/example/formats/email.ts index 430b7e4..82925c1 100644 --- a/example/formats/email.ts +++ b/example/formats/email.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/format +@alkdev/typebox/format The MIT License (MIT) diff --git a/example/formats/index.ts b/example/formats/index.ts index 1c4abe1..d5ee2ff 100644 --- a/example/formats/index.ts +++ b/example/formats/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/format +@alkdev/typebox/format The MIT License (MIT) diff --git a/example/formats/ipv4.ts b/example/formats/ipv4.ts index 1cf5069..d080e6a 100644 --- a/example/formats/ipv4.ts +++ b/example/formats/ipv4.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/format +@alkdev/typebox/format The MIT License (MIT) diff --git a/example/formats/ipv6.ts b/example/formats/ipv6.ts index 819be3f..0e90440 100644 --- a/example/formats/ipv6.ts +++ b/example/formats/ipv6.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/format +@alkdev/typebox/format The MIT License (MIT) diff --git a/example/formats/time.ts b/example/formats/time.ts index 9002f69..b5304c3 100644 --- a/example/formats/time.ts +++ b/example/formats/time.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/format +@alkdev/typebox/format The MIT License (MIT) diff --git a/example/formats/url.ts b/example/formats/url.ts index c01091e..1bc0a5f 100644 --- a/example/formats/url.ts +++ b/example/formats/url.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/format +@alkdev/typebox/format The MIT License (MIT) diff --git a/example/formats/uuid.ts b/example/formats/uuid.ts index 6213fba..63625a2 100644 --- a/example/formats/uuid.ts +++ b/example/formats/uuid.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/format +@alkdev/typebox/format The MIT License (MIT) diff --git a/example/index.ts b/example/index.ts index 58b1d13..ddf9d85 100644 --- a/example/index.ts +++ b/example/index.ts @@ -1,8 +1,8 @@ -import { TypeSystem } from '@sinclair/typebox/system' -import { TypeCompiler } from '@sinclair/typebox/compiler' -import { Value, ValuePointer } from '@sinclair/typebox/value' -import { Type, TypeGuard, Kind, Static, TSchema } from '@sinclair/typebox' -import { Syntax } from '@sinclair/typebox/syntax' +import { TypeSystem } from '@alkdev/typebox/system' +import { TypeCompiler } from '@alkdev/typebox/compiler' +import { Value, ValuePointer } from '@alkdev/typebox/value' +import { Type, TypeGuard, Kind, Static, TSchema } from '@alkdev/typebox' +import { Syntax } from '@alkdev/typebox/syntax' // ----------------------------------------------------------- // Create: Type diff --git a/example/prototypes/discriminated-union.ts b/example/prototypes/discriminated-union.ts index 668b951..fc9fcb7 100644 --- a/example/prototypes/discriminated-union.ts +++ b/example/prototypes/discriminated-union.ts @@ -1,7 +1,7 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/prototypes +@alkdev/typebox/prototypes The MIT License (MIT) @@ -27,9 +27,9 @@ THE SOFTWARE. ---------------------------------------------------------------------------*/ -import { Static, Kind, TSchema, TObject, SchemaOptions, CreateType, TLiteral, TypeRegistry, ValueGuard, KindGuard, TUnion } from '@sinclair/typebox' +import { Static, Kind, TSchema, TObject, SchemaOptions, CreateType, TLiteral, TypeRegistry, ValueGuard, KindGuard, TUnion } from '@alkdev/typebox' import { GetErrorFunction, SetErrorFunction } from 'src/errors/function' -import { Value } from '@sinclair/typebox/value' +import { Value } from '@alkdev/typebox/value' // ------------------------------------------------------------------ // DiscriminatedUnionError diff --git a/example/prototypes/from-schema.ts b/example/prototypes/from-schema.ts index 765b419..5178a00 100644 --- a/example/prototypes/from-schema.ts +++ b/example/prototypes/from-schema.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/prototypes +@alkdev/typebox/prototypes The MIT License (MIT) @@ -26,7 +26,7 @@ THE SOFTWARE. ---------------------------------------------------------------------------*/ -import * as Type from '@sinclair/typebox' +import * as Type from '@alkdev/typebox' // ------------------------------------------------------------------ // Schematics diff --git a/example/prototypes/index.ts b/example/prototypes/index.ts index 97925fb..b81a32b 100644 --- a/example/prototypes/index.ts +++ b/example/prototypes/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/prototypes +@alkdev/typebox/prototypes The MIT License (MIT) diff --git a/example/prototypes/options.ts b/example/prototypes/options.ts index a260d93..5d135e9 100644 --- a/example/prototypes/options.ts +++ b/example/prototypes/options.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/prototypes +@alkdev/typebox/prototypes The MIT License (MIT) @@ -26,7 +26,7 @@ THE SOFTWARE. ---------------------------------------------------------------------------*/ -import { TSchema, CloneType } from '@sinclair/typebox' +import { TSchema, CloneType } from '@alkdev/typebox' // prettier-ignore export type TOptions> = ( diff --git a/example/prototypes/partial-deep.ts b/example/prototypes/partial-deep.ts index 02d709d..85ae99f 100644 --- a/example/prototypes/partial-deep.ts +++ b/example/prototypes/partial-deep.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/prototypes +@alkdev/typebox/prototypes The MIT License (MIT) @@ -26,7 +26,7 @@ THE SOFTWARE. ---------------------------------------------------------------------------*/ -import { TypeGuard, Type, TSchema, TIntersect, TUnion, TObject, TPartial, TProperties, Evaluate } from '@sinclair/typebox' +import { TypeGuard, Type, TSchema, TIntersect, TUnion, TObject, TPartial, TProperties, Evaluate } from '@alkdev/typebox' // ------------------------------------------------------------------------------------- // TPartialDeepProperties diff --git a/example/prototypes/readme.md b/example/prototypes/readme.md index bf5ea90..47268d2 100644 --- a/example/prototypes/readme.md +++ b/example/prototypes/readme.md @@ -86,7 +86,7 @@ type A = typeof A extends { foo: number } ? true : false // true: foo property i ## Recursive Map The Recursive Map type enables deep structural remapping of a type and it's internal constituents. This type accepts a TSchema type and a mapping type function (expressed via HKT). The HKT is applied when traversing the type and it's interior. The mapping HKT can apply conditional tests to each visited type to remap into a new form. The following augments a schematic via Options, and conditionally remaps any schema with an default annotation to make it optional. ```typescript -import { Type, TOptional, Static, TSchema } from '@sinclair/typebox' +import { Type, TOptional, Static, TSchema } from '@alkdev/typebox' import { TRecursiveMap, TMappingType, Options } from './prototypes' diff --git a/example/prototypes/recursive-map.ts b/example/prototypes/recursive-map.ts index 6db125f..be6dff5 100644 --- a/example/prototypes/recursive-map.ts +++ b/example/prototypes/recursive-map.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/prototypes +@alkdev/typebox/prototypes The MIT License (MIT) @@ -26,7 +26,7 @@ THE SOFTWARE. ---------------------------------------------------------------------------*/ -import * as Types from '@sinclair/typebox' +import * as Types from '@alkdev/typebox' // ------------------------------------------------------------------ // Mapping: Functions and Type diff --git a/example/prototypes/union-enum.ts b/example/prototypes/union-enum.ts index 5106a00..bd806dd 100644 --- a/example/prototypes/union-enum.ts +++ b/example/prototypes/union-enum.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/prototypes +@alkdev/typebox/prototypes The MIT License (MIT) @@ -26,7 +26,7 @@ THE SOFTWARE. ---------------------------------------------------------------------------*/ -import { TypeRegistry, Kind, TSchema, SchemaOptions } from '@sinclair/typebox' +import { TypeRegistry, Kind, TSchema, SchemaOptions } from '@alkdev/typebox' // ------------------------------------------------------------------------------------- // TUnionEnum diff --git a/example/prototypes/union-oneof.ts b/example/prototypes/union-oneof.ts index add6114..6a9267d 100644 --- a/example/prototypes/union-oneof.ts +++ b/example/prototypes/union-oneof.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/prototypes +@alkdev/typebox/prototypes The MIT License (MIT) @@ -26,8 +26,8 @@ THE SOFTWARE. ---------------------------------------------------------------------------*/ -import { TypeRegistry, Kind, Static, TSchema, SchemaOptions } from '@sinclair/typebox' -import { Value } from '@sinclair/typebox/value' +import { TypeRegistry, Kind, Static, TSchema, SchemaOptions } from '@alkdev/typebox' +import { Value } from '@alkdev/typebox/value' // ------------------------------------------------------------------------------------- // TUnionOneOf diff --git a/example/standard/index.ts b/example/standard/index.ts index 331f30a..b23d4c6 100644 --- a/example/standard/index.ts +++ b/example/standard/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/standard-schema +@alkdev/typebox/standard-schema The MIT License (MIT) diff --git a/example/standard/readme.md b/example/standard/readme.md index 6dc3102..c2528ee 100644 --- a/example/standard/readme.md +++ b/example/standard/readme.md @@ -8,7 +8,7 @@ The following example augments a TypeBox schema with the required `~standard` in ```typescript import { StandardSchema } from './standard' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' const T = StandardSchema(Type.Object({ // const A = { x: Type.Number(), // (non-enumerable) '~standard': { diff --git a/example/standard/standard.ts b/example/standard/standard.ts index ef5ca38..548542e 100644 --- a/example/standard/standard.ts +++ b/example/standard/standard.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/standard-schema +@alkdev/typebox/standard-schema The MIT License (MIT) @@ -26,8 +26,8 @@ THE SOFTWARE. ---------------------------------------------------------------------------*/ -import { AssertError, Value, ValueError, ValueErrorType } from '@sinclair/typebox/value' -import { TSchema, StaticDecode, CloneType } from '@sinclair/typebox' +import { AssertError, Value, ValueError, ValueErrorType } from '@alkdev/typebox/value' +import { TSchema, StaticDecode, CloneType } from '@alkdev/typebox' // ------------------------------------------------------------------ // StandardSchema diff --git a/example/typedef/index.ts b/example/typedef/index.ts index 1d1d050..2871df8 100644 --- a/example/typedef/index.ts +++ b/example/typedef/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/typedef +@alkdev/typebox/typedef The MIT License (MIT) diff --git a/example/typedef/readme.md b/example/typedef/readme.md index 80639ff..0da0718 100644 --- a/example/typedef/readme.md +++ b/example/typedef/readme.md @@ -12,7 +12,7 @@ License MIT ## Usage -TypeBox currently doesn't publish TypeDef as part of the mainline package. However the TypeDef functionality is written to be a standalone module you can copy into your project. You will also need `@sinclair/typebox` installed. You can obtain the `typedef` module from `example/typedef/typedef.ts` contained within this repository. +TypeBox currently doesn't publish TypeDef as part of the mainline package. However the TypeDef functionality is written to be a standalone module you can copy into your project. You will also need `@alkdev/typebox` installed. You can obtain the `typedef` module from `example/typedef/typedef.ts` contained within this repository. ```typescript import { Type, Static } from './typedef' @@ -245,8 +245,8 @@ TypeDef types are partially supported with the `TypeCompiler` and `Value` checki The following is TypeDef used with TypeBox's type checking infrastructure. ```typescript -import { TypeCompiler } from '@sinclair/typebox/compiler' -import { Value } from '@sinclair/typebox/value' +import { TypeCompiler } from '@alkdev/typebox/compiler' +import { Value } from '@alkdev/typebox/value' const T = Type.Struct({ x: Type.Float32(), diff --git a/example/typedef/typedef.ts b/example/typedef/typedef.ts index 3ea15df..70e4a62 100644 --- a/example/typedef/typedef.ts +++ b/example/typedef/typedef.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/typedef +@alkdev/typebox/typedef The MIT License (MIT) @@ -26,8 +26,8 @@ THE SOFTWARE. ---------------------------------------------------------------------------*/ -import { SetErrorFunction, DefaultErrorFunction } from '@sinclair/typebox/errors' -import * as Types from '@sinclair/typebox/type' +import { SetErrorFunction, DefaultErrorFunction } from '@alkdev/typebox/errors' +import * as Types from '@alkdev/typebox/type' // -------------------------------------------------------------------------- // Metadata diff --git a/package-lock.json b/package-lock.json index a2a296a..6a76aae 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { - "name": "@sinclair/typebox", - "version": "0.34.48", + "name": "@alkdev/typebox", + "version": "0.34.49", "lockfileVersion": 2, "requires": true, "packages": { "": { - "name": "@sinclair/typebox", - "version": "0.34.48", + "name": "@alkdev/typebox", + "version": "0.34.49", "license": "MIT", "devDependencies": { "@arethetypeswrong/cli": "^0.13.2", @@ -15,9 +15,9 @@ "@types/node": "^22.13.5", "ajv": "^8.12.0", "ajv-formats": "^2.1.1", - "mocha": "^11.1.0", + "mocha": "^11.3.0", "prettier": "^2.7.1", - "typescript": "^5.9.3" + "typescript": "^6.0.2" } }, "node_modules/@andrewbranch/untar.js": { @@ -219,15 +219,16 @@ } }, "node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.18.0.tgz", + "integrity": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==", "dev": true, + "license": "MIT", "dependencies": { - "fast-deep-equal": "^3.1.1", + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "require-from-string": "^2.0.2" }, "funding": { "type": "github", @@ -251,15 +252,6 @@ } } }, - "node_modules/ansi-colors": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/ansi-escapes": { "version": "6.2.0", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.0.tgz", @@ -305,19 +297,6 @@ "integrity": "sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==", "dev": true }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, "node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", @@ -330,37 +309,16 @@ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/brace-expansion": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", - "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.3.tgz", + "integrity": "sha512-MCV/fYJEbqx68aE58kv2cA/kiky1G8vux3OR6/jbS+jIMe/6fJWa0DTzJU7dqijOWYwHi1t29FlfYI9uytqlpA==", "dev": true, "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" } }, - "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", - "dev": true, - "dependencies": { - "fill-range": "^7.1.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/browser-stdout": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", @@ -439,30 +397,19 @@ } }, "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], + "license": "MIT", "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" + "readdirp": "^4.0.1" }, "engines": { - "node": ">= 8.10.0" + "node": ">= 14.16.0" }, - "optionalDependencies": { - "fsevents": "~2.3.2" + "funding": { + "url": "https://paulmillr.com/funding/" } }, "node_modules/cli-table3": { @@ -582,10 +529,11 @@ } }, "node_modules/diff": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", - "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.2.tgz", + "integrity": "sha512-vtcDfH3TOjP8UekytvnHH1o1P4FcUdt4eQ1Y+Abap1tk/OB2MWQvcwS2ClCd1zuIhc3JKOx6p3kod8Vfys3E+A==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": ">=0.3.1" } @@ -1004,24 +952,29 @@ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, + "node_modules/fast-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz", + "integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "BSD-3-Clause" + }, "node_modules/fflate": { "version": "0.7.4", "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.7.4.tgz", "integrity": "sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw==", "dev": true }, - "node_modules/fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", - "dev": true, - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/find-up": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", @@ -1063,20 +1016,6 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, "node_modules/get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", @@ -1107,33 +1046,6 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/glob/node_modules/minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -1152,27 +1064,6 @@ "he": "bin/he" } }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", @@ -1182,27 +1073,6 @@ "node": ">=8" } }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, "node_modules/is-plain-obj": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", @@ -1352,15 +1222,19 @@ } }, "node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "version": "9.0.9", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.9.tgz", + "integrity": "sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==", "dev": true, + "license": "ISC", "dependencies": { - "brace-expansion": "^2.0.1" + "brace-expansion": "^2.0.2" }, "engines": { - "node": ">=10" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/minipass": { @@ -1373,14 +1247,14 @@ } }, "node_modules/mocha": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-11.1.0.tgz", - "integrity": "sha512-8uJR5RTC2NgpY3GrYcgpZrsEd9zKbPDpob1RezyR2upGHRQtHWofmzTMzTMSV6dru3tj5Ukt0+Vnq1qhFEEwAg==", + "version": "11.3.0", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-11.3.0.tgz", + "integrity": "sha512-J0RLIM89xi8y6l77bgbX+03PeBRDQCOVQpnwOcCN7b8hCmbh6JvGI2ZDJ5WMoHz+IaPU+S4lvTd0j51GmBAdgQ==", "dev": true, + "license": "MIT", "dependencies": { - "ansi-colors": "^4.1.3", "browser-stdout": "^1.3.1", - "chokidar": "^3.5.3", + "chokidar": "^4.0.1", "debug": "^4.3.5", "diff": "^5.2.0", "escape-string-regexp": "^4.0.0", @@ -1391,6 +1265,7 @@ "log-symbols": "^4.1.0", "minimatch": "^5.1.6", "ms": "^2.1.3", + "picocolors": "^1.1.1", "serialize-javascript": "^6.0.2", "strip-json-comments": "^3.1.1", "supports-color": "^8.1.1", @@ -1407,6 +1282,19 @@ "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, + "node_modules/mocha/node_modules/minimatch": { + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.9.tgz", + "integrity": "sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", @@ -1428,15 +1316,6 @@ "node": ">=18" } }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -1513,17 +1392,12 @@ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", "dev": true }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "dev": true, - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } + "license": "ISC" }, "node_modules/prettier": { "version": "2.8.8", @@ -1540,15 +1414,6 @@ "url": "https://github.com/prettier/prettier?sponsor=1" } }, - "node_modules/punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/randombytes": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", @@ -1559,15 +1424,17 @@ } }, "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", "dev": true, - "dependencies": { - "picomatch": "^2.2.1" - }, + "license": "MIT", "engines": { - "node": ">=8.10.0" + "node": ">= 14.18.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" } }, "node_modules/redeyed": { @@ -1792,18 +1659,6 @@ "node": ">=8" } }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, "node_modules/type-fest": { "version": "3.13.1", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", @@ -1817,9 +1672,9 @@ } }, "node_modules/typescript": { - "version": "5.9.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", - "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.2.tgz", + "integrity": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==", "dev": true, "license": "Apache-2.0", "bin": { @@ -1845,15 +1700,6 @@ "node": ">=4" } }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "dependencies": { - "punycode": "^2.1.0" - } - }, "node_modules/validate-npm-package-name": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz", @@ -1885,7 +1731,8 @@ "version": "6.5.1", "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.5.1.tgz", "integrity": "sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==", - "dev": true + "dev": true, + "license": "Apache-2.0" }, "node_modules/wrap-ansi": { "version": "8.1.0", @@ -2197,15 +2044,15 @@ } }, "ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.18.0.tgz", + "integrity": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==", "dev": true, "requires": { - "fast-deep-equal": "^3.1.1", + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "require-from-string": "^2.0.2" } }, "ajv-formats": { @@ -2217,12 +2064,6 @@ "ajv": "^8.0.0" } }, - "ansi-colors": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", - "dev": true - }, "ansi-escapes": { "version": "6.2.0", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.0.tgz", @@ -2253,16 +2094,6 @@ "integrity": "sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==", "dev": true }, - "anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, "argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", @@ -2275,30 +2106,15 @@ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true - }, "brace-expansion": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", - "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.3.tgz", + "integrity": "sha512-MCV/fYJEbqx68aE58kv2cA/kiky1G8vux3OR6/jbS+jIMe/6fJWa0DTzJU7dqijOWYwHi1t29FlfYI9uytqlpA==", "dev": true, "requires": { "balanced-match": "^1.0.0" } }, - "braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", - "dev": true, - "requires": { - "fill-range": "^7.1.1" - } - }, "browser-stdout": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", @@ -2358,19 +2174,12 @@ "dev": true }, "chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", "dev": true, "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" + "readdirp": "^4.0.1" } }, "cli-table3": { @@ -2455,9 +2264,9 @@ "dev": true }, "diff": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", - "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.2.tgz", + "integrity": "sha512-vtcDfH3TOjP8UekytvnHH1o1P4FcUdt4eQ1Y+Abap1tk/OB2MWQvcwS2ClCd1zuIhc3JKOx6p3kod8Vfys3E+A==", "dev": true }, "eastasianwidth": { @@ -2671,21 +2480,18 @@ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, + "fast-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz", + "integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==", + "dev": true + }, "fflate": { "version": "0.7.4", "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.7.4.tgz", "integrity": "sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw==", "dev": true }, - "fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", - "dev": true, - "requires": { - "to-regex-range": "^5.0.1" - } - }, "find-up": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", @@ -2712,13 +2518,6 @@ "signal-exit": "^4.0.1" } }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "dev": true, - "optional": true - }, "get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", @@ -2737,26 +2536,6 @@ "minipass": "^7.1.2", "package-json-from-dist": "^1.0.0", "path-scurry": "^1.11.1" - }, - "dependencies": { - "minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - } - } - }, - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "requires": { - "is-glob": "^4.0.1" } }, "has-flag": { @@ -2771,42 +2550,12 @@ "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", "dev": true }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true - }, "is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true }, - "is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true - }, "is-plain-obj": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", @@ -2907,12 +2656,12 @@ } }, "minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "version": "9.0.9", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.9.tgz", + "integrity": "sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==", "dev": true, "requires": { - "brace-expansion": "^2.0.1" + "brace-expansion": "^2.0.2" } }, "minipass": { @@ -2922,14 +2671,13 @@ "dev": true }, "mocha": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-11.1.0.tgz", - "integrity": "sha512-8uJR5RTC2NgpY3GrYcgpZrsEd9zKbPDpob1RezyR2upGHRQtHWofmzTMzTMSV6dru3tj5Ukt0+Vnq1qhFEEwAg==", + "version": "11.3.0", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-11.3.0.tgz", + "integrity": "sha512-J0RLIM89xi8y6l77bgbX+03PeBRDQCOVQpnwOcCN7b8hCmbh6JvGI2ZDJ5WMoHz+IaPU+S4lvTd0j51GmBAdgQ==", "dev": true, "requires": { - "ansi-colors": "^4.1.3", "browser-stdout": "^1.3.1", - "chokidar": "^3.5.3", + "chokidar": "^4.0.1", "debug": "^4.3.5", "diff": "^5.2.0", "escape-string-regexp": "^4.0.0", @@ -2940,6 +2688,7 @@ "log-symbols": "^4.1.0", "minimatch": "^5.1.6", "ms": "^2.1.3", + "picocolors": "^1.1.1", "serialize-javascript": "^6.0.2", "strip-json-comments": "^3.1.1", "supports-color": "^8.1.1", @@ -2947,6 +2696,17 @@ "yargs": "^17.7.2", "yargs-parser": "^21.1.1", "yargs-unparser": "^2.0.0" + }, + "dependencies": { + "minimatch": { + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.9.tgz", + "integrity": "sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + } } }, "ms": { @@ -2967,12 +2727,6 @@ "skin-tone": "^2.0.0" } }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, "p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -3027,10 +2781,10 @@ } } }, - "picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "dev": true }, "prettier": { @@ -3039,12 +2793,6 @@ "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", "dev": true }, - "punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "dev": true - }, "randombytes": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", @@ -3055,13 +2803,10 @@ } }, "readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "requires": { - "picomatch": "^2.2.1" - } + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", + "dev": true }, "redeyed": { "version": "2.1.1", @@ -3214,15 +2959,6 @@ } } }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "requires": { - "is-number": "^7.0.0" - } - }, "type-fest": { "version": "3.13.1", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", @@ -3230,9 +2966,9 @@ "dev": true }, "typescript": { - "version": "5.9.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", - "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.2.tgz", + "integrity": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==", "dev": true }, "undici-types": { @@ -3247,15 +2983,6 @@ "integrity": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==", "dev": true }, - "uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, "validate-npm-package-name": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz", diff --git a/package.json b/package.json index db8fd39..1b3ee94 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "@sinclair/typebox", - "version": "0.34.48", + "name": "@alkdev/typebox", + "version": "0.34.49", "description": "Json Schema Type Builder with Static Type Resolution for TypeScript", "keywords": [ "typescript", @@ -8,12 +8,12 @@ "validate", "typecheck" ], - "author": "sinclairzx81", + "author": "alkdev", "license": "MIT", - "homepage": "https://github.com/sinclairzx81/typebox-legacy", + "homepage": "https://git.alk.dev/alkdev/typebox", "repository": { "type": "git", - "url": "https://github.com/sinclairzx81/typebox-legacy" + "url": "https://git.alk.dev/alkdev/typebox" }, "scripts": { "test:typescript": "hammer task test_typescript", @@ -37,8 +37,8 @@ "@types/node": "^22.13.5", "ajv": "^8.12.0", "ajv-formats": "^2.1.1", - "mocha": "^11.1.0", + "mocha": "^11.3.0", "prettier": "^2.7.1", - "typescript": "^5.9.3" + "typescript": "^6.0.2" } } diff --git a/readme.md b/readme.md index 3f1253c..632e37a 100644 --- a/readme.md +++ b/readme.md @@ -1,35 +1,33 @@
-

TypeBox 0.34.x

+

TypeBox

Json Schema Type Builder with Static Type Resolution for TypeScript

- -

-[![npm version](https://badge.fury.io/js/%40sinclair%2Ftypebox.svg)](https://badge.fury.io/js/%40sinclair%2Ftypebox) -[![Downloads](https://img.shields.io/npm/dm/%40sinclair%2Ftypebox.svg)](https://www.npmjs.com/package/%40sinclair%2Ftypebox) -[![Build](https://github.com/sinclairzx81/typebox/actions/workflows/build.yml/badge.svg)](https://github.com/sinclairzx81/typebox/actions/workflows/build.yml) [![License](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
+ ## Install -```bash -$ npm install @sinclair/typebox # TypeBox-Legacy | 0.34.x +For the latest version use [TypeBox 1.x](https://git.alk.dev/alkdev/typebox) -$ npm install typebox # TypeBox | 1.0.x +```bash +$ npm install @alkdev/typebox # TypeBox 0.x - Long Term Support + +$ npm install typebox # TypeBox 1.x - Latest ``` ## Example ```typescript -import { Type, type Static } from '@sinclair/typebox' +import { Type, type Static } from '@alkdev/typebox' const T = Type.Object({ // const T = { x: Type.Number(), // type: 'object', @@ -48,13 +46,10 @@ type T = Static // type T = { // } ``` - ## Overview -> ⚠️ TypeBox versions (pre-1.0) will continue active maintenance through 2026 and beyond. This repository services as the OIDC publishing environment for the `@sinclair/typebox` package scope on NPM. For TypeBox versions 1.0 and above, refer to https://github.com/sinclairzx81/typebox - TypeBox is a runtime type builder that creates in-memory Json Schema objects that infer as TypeScript types. The schematics produced by this library are designed to match the static type checking rules of the TypeScript compiler. TypeBox offers a unified type that can be statically checked by TypeScript and runtime asserted using standard Json Schema validation. This library is designed to allow Json Schema to compose similar to how types compose within TypeScript's type system. It can be used as a simple tool to build up complex schematics or integrated into REST and RPC services to help validate data received over the wire. @@ -132,7 +127,7 @@ License MIT The following shows general usage. ```typescript -import { Type, type Static } from '@sinclair/typebox' +import { Type, type Static } from '@alkdev/typebox' //-------------------------------------------------------------------------------------------- // @@ -190,7 +185,7 @@ type T = Static // type T = { // //-------------------------------------------------------------------------------------------- -import { Value } from '@sinclair/typebox/value' +import { Value } from '@alkdev/typebox/value' const R = Value.Parse(T, value) // const R: { // id: string, @@ -942,7 +937,7 @@ const C = Type.Exclude( // type C = Exclude<1 | 2 | TypeBox supports value decoding and encoding with Transform types. These types work in tandem with the Encode and Decode functions available on the Value and TypeCompiler submodules. Transform types can be used to convert Json encoded values into constructs more natural to JavaScript. The following creates a Transform type to decode numbers into Dates using the Value submodule. ```typescript -import { Value } from '@sinclair/typebox/value' +import { Value } from '@alkdev/typebox/value' const T = Type.Transform(Type.Number()) .Decode(value => new Date(value)) // decode: number to Date @@ -953,7 +948,7 @@ const E = Value.Encode(T, D) // const E = 0 ``` Use the StaticEncode or StaticDecode types to infer a Transform type. ```typescript -import { Static, StaticDecode, StaticEncode } from '@sinclair/typebox' +import { Static, StaticDecode, StaticEncode } from '@alkdev/typebox' const T = Type.Transform(Type.Array(Type.Number(), { uniqueItems: true })) .Decode(value => new Set(value)) @@ -1005,7 +1000,7 @@ type S = Static // type S = 'A' | 'B' | 'C' TypeBox can check its own types with the TypeGuard module. This module is written for type introspection and provides structural tests for every built-in TypeBox type. Functions of this module return `is` guards which can be used with control flow assertions to obtain schema inference for unknown values. The following guards that the value `T` is TString. ```typescript -import { TypeGuard, Kind } from '@sinclair/typebox' +import { TypeGuard, Kind } from '@alkdev/typebox' const T = { [Kind]: 'String', type: 'string' } @@ -1022,7 +1017,7 @@ if(TypeGuard.IsString(T)) { TypeBox provides an optional Value submodule that can be used to perform structural operations on JavaScript values. This submodule includes functionality to create, check and cast values from types as well as check equality, clone, diff and patch JavaScript values. This submodule is provided via optional import. ```typescript -import { Value } from '@sinclair/typebox/value' +import { Value } from '@alkdev/typebox/value' ``` @@ -1296,7 +1291,7 @@ const R2 = A.x === X // const R2 = true Use ValuePointer to perform mutable updates on existing values using [RFC6901](https://www.rfc-editor.org/rfc/rfc6901) Json Pointers. ```typescript -import { ValuePointer } from '@sinclair/typebox/value' +import { ValuePointer } from '@alkdev/typebox/value' const A = { x: 0, y: 0, z: 0 } @@ -1316,7 +1311,7 @@ TypeBox provides experimental support for parsing TypeScript annotation syntax i This feature is provided via optional import. ```typescript -import { Syntax } from '@sinclair/typebox/syntax' +import { Syntax } from '@alkdev/typebox/syntax' ``` @@ -1403,7 +1398,7 @@ const T = Syntax(`number`, { minimum: 42 }) // const T = { Syntax parsing is an expensive type level operation and can impact on language service performance. Use the NoInfer function parse syntax at runtime only. ```typescript -import { NoInfer } from '@sinclair/typebox/syntax' +import { NoInfer } from '@alkdev/typebox/syntax' const T = NoInfer(`number | string`) // const T: TSchema = { // anyOf: [ @@ -1426,7 +1421,7 @@ The TypeBox type system can be extended with additional types and formats using Use the TypeRegistry to register a type. The Kind must match the registered type name. ```typescript -import { TSchema, Kind, TypeRegistry } from '@sinclair/typebox' +import { TSchema, Kind, TypeRegistry } from '@alkdev/typebox' TypeRegistry.Set('Foo', (schema, value) => value === 'foo') @@ -1444,7 +1439,7 @@ const B = Value.Check(Foo, 'bar') // const B = false Use the FormatRegistry to register a string format. ```typescript -import { FormatRegistry } from '@sinclair/typebox' +import { FormatRegistry } from '@alkdev/typebox' FormatRegistry.Set('foo', (value) => value === 'foo') @@ -1474,7 +1469,7 @@ $ npm install ajv ajv-formats --save ``` ```typescript -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import addFormats from 'ajv-formats' import Ajv from 'ajv' @@ -1513,7 +1508,7 @@ The TypeBox TypeCompiler is a high performance JIT validation compiler that tran The TypeCompiler is provided as an optional import. ```typescript -import { TypeCompiler } from '@sinclair/typebox/compiler' +import { TypeCompiler } from '@alkdev/typebox/compiler' ``` Use the Compile function to JIT compile a type. Note that compilation is generally an expensive operation and should only be performed once per type during application start up. TypeBox does not cache previously compiled types, and applications are expected to hold references to each compiled type for the lifetime of the application. @@ -1580,7 +1575,7 @@ const C = TypeCompiler.Code(Type.String()) // const C = `return functi TypeBox offers an external package for bidirectional mapping between TypeBox, Valibot, and Zod type libraries. It also includes syntax parsing support for Valibot and Zod and supports the Standard Schema specification. For more details on TypeMap, refer to the project repository. -[TypeMap Repository](https://github.com/sinclairzx81/typemap) +[TypeMap Repository](https://git.alk.dev/alkdev/typebox) @@ -1627,7 +1622,7 @@ TypeBox validates using standard Json Schema assertion policies by default. The The following overrides are available. ```typescript -import { TypeSystemPolicy } from '@sinclair/typebox/system' +import { TypeSystemPolicy } from '@alkdev/typebox/system' // Disallow undefined values for optional properties (default is false) // @@ -1664,7 +1659,7 @@ The following example shows an inline error function that intercepts errors for ```typescript -import { SetErrorFunction, DefaultErrorFunction, ValueErrorType } from '@sinclair/typebox/errors' +import { SetErrorFunction, DefaultErrorFunction, ValueErrorType } from '@alkdev/typebox/errors' SetErrorFunction((error) => { // i18n override switch(error.errorType) { @@ -1707,7 +1702,7 @@ const E = [...Value.Errors(T, { // const E = [{ TypeBox offers a web based code generation tool that can convert TypeScript types into TypeBox types as well as several other ecosystem libraries. -[TypeBox Workbench Link Here](https://sinclairzx81.github.io/typebox-workbench/) +[TypeBox Workbench Link Here](https://git.alk.dev/alkdev/typebox/) @@ -1715,7 +1710,7 @@ TypeBox offers a web based code generation tool that can convert TypeScript type TypeBox provides a code generation library that can be integrated into toolchains to automate type translation between TypeScript and TypeBox. This library also includes functionality to transform TypeScript types to other ecosystem libraries. -[TypeBox Codegen Link Here](https://github.com/sinclairzx81/typebox-codegen) +[TypeBox Codegen Link Here](https://git.alk.dev/alkdev/typebox-codegen) diff --git a/src/compiler/compiler.ts b/src/compiler/compiler.ts index 3c61539..2ef2f07 100644 --- a/src/compiler/compiler.ts +++ b/src/compiler/compiler.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/compiler +@alkdev/typebox/compiler The MIT License (MIT) diff --git a/src/compiler/index.ts b/src/compiler/index.ts index 8a2bfd8..f58ab91 100644 --- a/src/compiler/index.ts +++ b/src/compiler/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/compiler +@alkdev/typebox/compiler The MIT License (MIT) diff --git a/src/errors/errors.ts b/src/errors/errors.ts index 73795cc..3d66fc2 100644 --- a/src/errors/errors.ts +++ b/src/errors/errors.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/errors +@alkdev/typebox/errors The MIT License (MIT) diff --git a/src/errors/function.ts b/src/errors/function.ts index 06b49b8..e165e31 100644 --- a/src/errors/function.ts +++ b/src/errors/function.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/system +@alkdev/typebox/system The MIT License (MIT) diff --git a/src/errors/index.ts b/src/errors/index.ts index 7941b6d..fcc2999 100644 --- a/src/errors/index.ts +++ b/src/errors/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/errors +@alkdev/typebox/errors The MIT License (MIT) diff --git a/src/index.ts b/src/index.ts index 040ecfa..c84d603 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox +@alkdev/typebox The MIT License (MIT) diff --git a/src/syntax/index.ts b/src/syntax/index.ts index 5dd37de..e15e8c6 100644 --- a/src/syntax/index.ts +++ b/src/syntax/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/syntax +@alkdev/typebox/syntax The MIT License (MIT) diff --git a/src/syntax/mapping.ts b/src/syntax/mapping.ts index 497e0e8..71bc0aa 100644 --- a/src/syntax/mapping.ts +++ b/src/syntax/mapping.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/syntax +@alkdev/typebox/syntax The MIT License (MIT) diff --git a/src/syntax/parser.ts b/src/syntax/parser.ts index 4a38a59..25fe6c2 100644 --- a/src/syntax/parser.ts +++ b/src/syntax/parser.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/syntax +@alkdev/typebox/syntax The MIT License (MIT) diff --git a/src/syntax/syntax.ts b/src/syntax/syntax.ts index 42c3c87..ac77010 100644 --- a/src/syntax/syntax.ts +++ b/src/syntax/syntax.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/syntax +@alkdev/typebox/syntax The MIT License (MIT) diff --git a/src/system/index.ts b/src/system/index.ts index da37d6c..2c63d9d 100644 --- a/src/system/index.ts +++ b/src/system/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/system +@alkdev/typebox/system The MIT License (MIT) diff --git a/src/system/policy.ts b/src/system/policy.ts index 7161a5f..9140c9d 100644 --- a/src/system/policy.ts +++ b/src/system/policy.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/system +@alkdev/typebox/system The MIT License (MIT) diff --git a/src/system/system.ts b/src/system/system.ts index 9b86cfd..e78446c 100644 --- a/src/system/system.ts +++ b/src/system/system.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/system +@alkdev/typebox/system The MIT License (MIT) diff --git a/src/type/any/any.ts b/src/type/any/any.ts index b5afc93..e8a10c6 100644 --- a/src/type/any/any.ts +++ b/src/type/any/any.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/any/index.ts b/src/type/any/index.ts index deddde5..027c590 100644 --- a/src/type/any/index.ts +++ b/src/type/any/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/argument/argument.ts b/src/type/argument/argument.ts index d17105b..9e2ddba 100644 --- a/src/type/argument/argument.ts +++ b/src/type/argument/argument.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/argument/index.ts b/src/type/argument/index.ts index f3ee618..62c5290 100644 --- a/src/type/argument/index.ts +++ b/src/type/argument/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/array/array.ts b/src/type/array/array.ts index dda42e4..f313a97 100644 --- a/src/type/array/array.ts +++ b/src/type/array/array.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/array/index.ts b/src/type/array/index.ts index 6a10997..0ad3c67 100644 --- a/src/type/array/index.ts +++ b/src/type/array/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/async-iterator/async-iterator.ts b/src/type/async-iterator/async-iterator.ts index 5f642b7..4b82d99 100644 --- a/src/type/async-iterator/async-iterator.ts +++ b/src/type/async-iterator/async-iterator.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/async-iterator/index.ts b/src/type/async-iterator/index.ts index 5f7615a..75456bf 100644 --- a/src/type/async-iterator/index.ts +++ b/src/type/async-iterator/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/awaited/awaited.ts b/src/type/awaited/awaited.ts index 7907c17..10caec7 100644 --- a/src/type/awaited/awaited.ts +++ b/src/type/awaited/awaited.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/awaited/index.ts b/src/type/awaited/index.ts index 6f6a8e8..546eeff 100644 --- a/src/type/awaited/index.ts +++ b/src/type/awaited/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/bigint/bigint.ts b/src/type/bigint/bigint.ts index 9e0932f..79c34ad 100644 --- a/src/type/bigint/bigint.ts +++ b/src/type/bigint/bigint.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/bigint/index.ts b/src/type/bigint/index.ts index ba5724d..2b29e53 100644 --- a/src/type/bigint/index.ts +++ b/src/type/bigint/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/boolean/boolean.ts b/src/type/boolean/boolean.ts index 3966212..2fa3178 100644 --- a/src/type/boolean/boolean.ts +++ b/src/type/boolean/boolean.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/boolean/index.ts b/src/type/boolean/index.ts index 6067dc3..a21f289 100644 --- a/src/type/boolean/index.ts +++ b/src/type/boolean/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/clone/index.ts b/src/type/clone/index.ts index 6de4e17..8289a4b 100644 --- a/src/type/clone/index.ts +++ b/src/type/clone/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/clone/type.ts b/src/type/clone/type.ts index e571cee..cc9e9e8 100644 --- a/src/type/clone/type.ts +++ b/src/type/clone/type.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/clone/value.ts b/src/type/clone/value.ts index 07fce69..1c9f9ed 100644 --- a/src/type/clone/value.ts +++ b/src/type/clone/value.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/composite/composite.ts b/src/type/composite/composite.ts index 6cb8d36..40f65e3 100644 --- a/src/type/composite/composite.ts +++ b/src/type/composite/composite.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/composite/index.ts b/src/type/composite/index.ts index c3228b8..857f75f 100644 --- a/src/type/composite/index.ts +++ b/src/type/composite/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/computed/computed.ts b/src/type/computed/computed.ts index 748a1ce..7118863 100644 --- a/src/type/computed/computed.ts +++ b/src/type/computed/computed.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/computed/index.ts b/src/type/computed/index.ts index 89279bf..c9ee793 100644 --- a/src/type/computed/index.ts +++ b/src/type/computed/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/const/const.ts b/src/type/const/const.ts index 25bba72..215dd4c 100644 --- a/src/type/const/const.ts +++ b/src/type/const/const.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/const/index.ts b/src/type/const/index.ts index 045e078..eef3aa1 100644 --- a/src/type/const/index.ts +++ b/src/type/const/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/constructor-parameters/constructor-parameters.ts b/src/type/constructor-parameters/constructor-parameters.ts index 4148184..de311d4 100644 --- a/src/type/constructor-parameters/constructor-parameters.ts +++ b/src/type/constructor-parameters/constructor-parameters.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/constructor-parameters/index.ts b/src/type/constructor-parameters/index.ts index 56d8c7f..d170ad7 100644 --- a/src/type/constructor-parameters/index.ts +++ b/src/type/constructor-parameters/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/constructor/constructor.ts b/src/type/constructor/constructor.ts index 4942cf8..a2302ef 100644 --- a/src/type/constructor/constructor.ts +++ b/src/type/constructor/constructor.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/constructor/index.ts b/src/type/constructor/index.ts index c57c659..d15a5f7 100644 --- a/src/type/constructor/index.ts +++ b/src/type/constructor/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/create/immutable.ts b/src/type/create/immutable.ts index 5e01c0e..b9440e7 100644 --- a/src/type/create/immutable.ts +++ b/src/type/create/immutable.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/create/index.ts b/src/type/create/index.ts index 2e5647d..24f89f9 100644 --- a/src/type/create/index.ts +++ b/src/type/create/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/create/type.ts b/src/type/create/type.ts index c0ea4c0..9653154 100644 --- a/src/type/create/type.ts +++ b/src/type/create/type.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/date/date.ts b/src/type/date/date.ts index ed8cc5c..7606da2 100644 --- a/src/type/date/date.ts +++ b/src/type/date/date.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/date/index.ts b/src/type/date/index.ts index 2ce2326..cc64ada 100644 --- a/src/type/date/index.ts +++ b/src/type/date/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/discard/discard.ts b/src/type/discard/discard.ts index 2d46377..2cfd95e 100644 --- a/src/type/discard/discard.ts +++ b/src/type/discard/discard.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/discard/index.ts b/src/type/discard/index.ts index 8fa8884..b90852b 100644 --- a/src/type/discard/index.ts +++ b/src/type/discard/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/enum/enum.ts b/src/type/enum/enum.ts index d9d4549..ab9efc5 100644 --- a/src/type/enum/enum.ts +++ b/src/type/enum/enum.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/enum/index.ts b/src/type/enum/index.ts index 4529b34..ccdb326 100644 --- a/src/type/enum/index.ts +++ b/src/type/enum/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/error/error.ts b/src/type/error/error.ts index e0b73db..2c2eb43 100644 --- a/src/type/error/error.ts +++ b/src/type/error/error.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/error/index.ts b/src/type/error/index.ts index 830bae7..03101a5 100644 --- a/src/type/error/index.ts +++ b/src/type/error/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/exclude/exclude-from-mapped-result.ts b/src/type/exclude/exclude-from-mapped-result.ts index 290cb3c..8d6b8e7 100644 --- a/src/type/exclude/exclude-from-mapped-result.ts +++ b/src/type/exclude/exclude-from-mapped-result.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/exclude/exclude-from-template-literal.ts b/src/type/exclude/exclude-from-template-literal.ts index 4547f74..e3e173b 100644 --- a/src/type/exclude/exclude-from-template-literal.ts +++ b/src/type/exclude/exclude-from-template-literal.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/exclude/exclude.ts b/src/type/exclude/exclude.ts index f3edbc7..1d19851 100644 --- a/src/type/exclude/exclude.ts +++ b/src/type/exclude/exclude.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/exclude/index.ts b/src/type/exclude/index.ts index 64681f2..0d511eb 100644 --- a/src/type/exclude/index.ts +++ b/src/type/exclude/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/extends/extends-check.ts b/src/type/extends/extends-check.ts index a28ca21..5895815 100644 --- a/src/type/extends/extends-check.ts +++ b/src/type/extends/extends-check.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/extends/extends-from-mapped-key.ts b/src/type/extends/extends-from-mapped-key.ts index ef29428..33f7fe0 100644 --- a/src/type/extends/extends-from-mapped-key.ts +++ b/src/type/extends/extends-from-mapped-key.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/extends/extends-from-mapped-result.ts b/src/type/extends/extends-from-mapped-result.ts index 544a782..9ca060c 100644 --- a/src/type/extends/extends-from-mapped-result.ts +++ b/src/type/extends/extends-from-mapped-result.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/extends/extends-undefined.ts b/src/type/extends/extends-undefined.ts index bfc7a80..a752bbb 100644 --- a/src/type/extends/extends-undefined.ts +++ b/src/type/extends/extends-undefined.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/extends/extends.ts b/src/type/extends/extends.ts index e552ffb..98bc042 100644 --- a/src/type/extends/extends.ts +++ b/src/type/extends/extends.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/extends/index.ts b/src/type/extends/index.ts index 5c88299..05dd566 100644 --- a/src/type/extends/index.ts +++ b/src/type/extends/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/extract/extract-from-mapped-result.ts b/src/type/extract/extract-from-mapped-result.ts index 8ef2c18..9ebbfba 100644 --- a/src/type/extract/extract-from-mapped-result.ts +++ b/src/type/extract/extract-from-mapped-result.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/extract/extract-from-template-literal.ts b/src/type/extract/extract-from-template-literal.ts index 289e570..0af1f32 100644 --- a/src/type/extract/extract-from-template-literal.ts +++ b/src/type/extract/extract-from-template-literal.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/extract/extract.ts b/src/type/extract/extract.ts index bfe4142..9958b23 100644 --- a/src/type/extract/extract.ts +++ b/src/type/extract/extract.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/extract/index.ts b/src/type/extract/index.ts index fa47134..4dae3ac 100644 --- a/src/type/extract/index.ts +++ b/src/type/extract/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/function/function.ts b/src/type/function/function.ts index 970f904..a0b84ba 100644 --- a/src/type/function/function.ts +++ b/src/type/function/function.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/function/index.ts b/src/type/function/index.ts index 523212b..abaac5f 100644 --- a/src/type/function/index.ts +++ b/src/type/function/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/guard/index.ts b/src/type/guard/index.ts index e4144e4..b74bf26 100644 --- a/src/type/guard/index.ts +++ b/src/type/guard/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/guard/kind.ts b/src/type/guard/kind.ts index 2292189..70488bb 100644 --- a/src/type/guard/kind.ts +++ b/src/type/guard/kind.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/guard/type.ts b/src/type/guard/type.ts index 43a7644..8600331 100644 --- a/src/type/guard/type.ts +++ b/src/type/guard/type.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/guard/value.ts b/src/type/guard/value.ts index 1b28c5d..f197314 100644 --- a/src/type/guard/value.ts +++ b/src/type/guard/value.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/helpers/helpers.ts b/src/type/helpers/helpers.ts index f3f39d3..3518acb 100644 --- a/src/type/helpers/helpers.ts +++ b/src/type/helpers/helpers.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/helpers/index.ts b/src/type/helpers/index.ts index 8c1a719..cfeaba7 100644 --- a/src/type/helpers/index.ts +++ b/src/type/helpers/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/index.ts b/src/type/index.ts index f63f525..dae0dc5 100644 --- a/src/type/index.ts +++ b/src/type/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/indexed/index.ts b/src/type/indexed/index.ts index ddc65ba..2871bd7 100644 --- a/src/type/indexed/index.ts +++ b/src/type/indexed/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/indexed/indexed-from-mapped-key.ts b/src/type/indexed/indexed-from-mapped-key.ts index 13a0505..a2875de 100644 --- a/src/type/indexed/indexed-from-mapped-key.ts +++ b/src/type/indexed/indexed-from-mapped-key.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/indexed/indexed-from-mapped-result.ts b/src/type/indexed/indexed-from-mapped-result.ts index a3bf135..c33b8d7 100644 --- a/src/type/indexed/indexed-from-mapped-result.ts +++ b/src/type/indexed/indexed-from-mapped-result.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/indexed/indexed-property-keys.ts b/src/type/indexed/indexed-property-keys.ts index 8c18572..34a8c60 100644 --- a/src/type/indexed/indexed-property-keys.ts +++ b/src/type/indexed/indexed-property-keys.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/indexed/indexed.ts b/src/type/indexed/indexed.ts index 43f93e6..49d95c3 100644 --- a/src/type/indexed/indexed.ts +++ b/src/type/indexed/indexed.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/instance-type/index.ts b/src/type/instance-type/index.ts index f68c4d5..3c7f7e4 100644 --- a/src/type/instance-type/index.ts +++ b/src/type/instance-type/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/instance-type/instance-type.ts b/src/type/instance-type/instance-type.ts index a41b902..e769784 100644 --- a/src/type/instance-type/instance-type.ts +++ b/src/type/instance-type/instance-type.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/instantiate/index.ts b/src/type/instantiate/index.ts index ca2cf18..f47d020 100644 --- a/src/type/instantiate/index.ts +++ b/src/type/instantiate/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/instantiate/instantiate.ts b/src/type/instantiate/instantiate.ts index 200a2bd..3d5919e 100644 --- a/src/type/instantiate/instantiate.ts +++ b/src/type/instantiate/instantiate.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/integer/index.ts b/src/type/integer/index.ts index bba8689..616143f 100644 --- a/src/type/integer/index.ts +++ b/src/type/integer/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/integer/integer.ts b/src/type/integer/integer.ts index f600b3e..e8aff6d 100644 --- a/src/type/integer/integer.ts +++ b/src/type/integer/integer.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/intersect/index.ts b/src/type/intersect/index.ts index c36c706..82c5659 100644 --- a/src/type/intersect/index.ts +++ b/src/type/intersect/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/intersect/intersect-create.ts b/src/type/intersect/intersect-create.ts index 87ae35a..2997b0a 100644 --- a/src/type/intersect/intersect-create.ts +++ b/src/type/intersect/intersect-create.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/intersect/intersect-evaluated.ts b/src/type/intersect/intersect-evaluated.ts index e6942d9..f9cde9a 100644 --- a/src/type/intersect/intersect-evaluated.ts +++ b/src/type/intersect/intersect-evaluated.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/intersect/intersect-type.ts b/src/type/intersect/intersect-type.ts index 248ae5f..b743e58 100644 --- a/src/type/intersect/intersect-type.ts +++ b/src/type/intersect/intersect-type.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/intersect/intersect.ts b/src/type/intersect/intersect.ts index 8bd1be9..e068de0 100644 --- a/src/type/intersect/intersect.ts +++ b/src/type/intersect/intersect.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/intrinsic/capitalize.ts b/src/type/intrinsic/capitalize.ts index 54493bb..98f9625 100644 --- a/src/type/intrinsic/capitalize.ts +++ b/src/type/intrinsic/capitalize.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/intrinsic/index.ts b/src/type/intrinsic/index.ts index ed53831..45cba46 100644 --- a/src/type/intrinsic/index.ts +++ b/src/type/intrinsic/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/intrinsic/intrinsic-from-mapped-key.ts b/src/type/intrinsic/intrinsic-from-mapped-key.ts index 6c5c6a4..f5002a7 100644 --- a/src/type/intrinsic/intrinsic-from-mapped-key.ts +++ b/src/type/intrinsic/intrinsic-from-mapped-key.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/intrinsic/intrinsic.ts b/src/type/intrinsic/intrinsic.ts index c58d44d..9247584 100644 --- a/src/type/intrinsic/intrinsic.ts +++ b/src/type/intrinsic/intrinsic.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/intrinsic/lowercase.ts b/src/type/intrinsic/lowercase.ts index d1536c7..c6673a3 100644 --- a/src/type/intrinsic/lowercase.ts +++ b/src/type/intrinsic/lowercase.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/intrinsic/uncapitalize.ts b/src/type/intrinsic/uncapitalize.ts index 17716d6..b429b86 100644 --- a/src/type/intrinsic/uncapitalize.ts +++ b/src/type/intrinsic/uncapitalize.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/intrinsic/uppercase.ts b/src/type/intrinsic/uppercase.ts index 8bfbfc5..6113f0e 100644 --- a/src/type/intrinsic/uppercase.ts +++ b/src/type/intrinsic/uppercase.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/iterator/index.ts b/src/type/iterator/index.ts index 976e191..7d034a8 100644 --- a/src/type/iterator/index.ts +++ b/src/type/iterator/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/iterator/iterator.ts b/src/type/iterator/iterator.ts index 7331831..1f4cc85 100644 --- a/src/type/iterator/iterator.ts +++ b/src/type/iterator/iterator.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/keyof/index.ts b/src/type/keyof/index.ts index 128192d..e25cd06 100644 --- a/src/type/keyof/index.ts +++ b/src/type/keyof/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/keyof/keyof-from-mapped-result.ts b/src/type/keyof/keyof-from-mapped-result.ts index 2853b97..56faf14 100644 --- a/src/type/keyof/keyof-from-mapped-result.ts +++ b/src/type/keyof/keyof-from-mapped-result.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/keyof/keyof-property-entries.ts b/src/type/keyof/keyof-property-entries.ts index 44d41ad..5070c27 100644 --- a/src/type/keyof/keyof-property-entries.ts +++ b/src/type/keyof/keyof-property-entries.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/keyof/keyof-property-keys.ts b/src/type/keyof/keyof-property-keys.ts index b716b3a..afb3b8e 100644 --- a/src/type/keyof/keyof-property-keys.ts +++ b/src/type/keyof/keyof-property-keys.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/keyof/keyof.ts b/src/type/keyof/keyof.ts index 6b71e5a..fcd4015 100644 --- a/src/type/keyof/keyof.ts +++ b/src/type/keyof/keyof.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/literal/index.ts b/src/type/literal/index.ts index 9918abd..227fe18 100644 --- a/src/type/literal/index.ts +++ b/src/type/literal/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/literal/literal.ts b/src/type/literal/literal.ts index f6f6727..2c38590 100644 --- a/src/type/literal/literal.ts +++ b/src/type/literal/literal.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/mapped/index.ts b/src/type/mapped/index.ts index fb4cc01..070f6f1 100644 --- a/src/type/mapped/index.ts +++ b/src/type/mapped/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/mapped/mapped-key.ts b/src/type/mapped/mapped-key.ts index ebde742..948aa8d 100644 --- a/src/type/mapped/mapped-key.ts +++ b/src/type/mapped/mapped-key.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/mapped/mapped-result.ts b/src/type/mapped/mapped-result.ts index 7e715e6..0e5f519 100644 --- a/src/type/mapped/mapped-result.ts +++ b/src/type/mapped/mapped-result.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/mapped/mapped.ts b/src/type/mapped/mapped.ts index 205168c..e3e1995 100644 --- a/src/type/mapped/mapped.ts +++ b/src/type/mapped/mapped.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/module/compute.ts b/src/type/module/compute.ts index c56feba..8dfbee8 100644 --- a/src/type/module/compute.ts +++ b/src/type/module/compute.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/module/index.ts b/src/type/module/index.ts index 04ee1ed..d98c352 100644 --- a/src/type/module/index.ts +++ b/src/type/module/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/module/infer.ts b/src/type/module/infer.ts index db25a2b..bc4a151 100644 --- a/src/type/module/infer.ts +++ b/src/type/module/infer.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/module/module.ts b/src/type/module/module.ts index 90bb8cd..07d9a29 100644 --- a/src/type/module/module.ts +++ b/src/type/module/module.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/never/index.ts b/src/type/never/index.ts index a1d859e..41926d3 100644 --- a/src/type/never/index.ts +++ b/src/type/never/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/never/never.ts b/src/type/never/never.ts index 2cc2583..2ae037d 100644 --- a/src/type/never/never.ts +++ b/src/type/never/never.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/not/index.ts b/src/type/not/index.ts index 8682d80..3705d45 100644 --- a/src/type/not/index.ts +++ b/src/type/not/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/not/not.ts b/src/type/not/not.ts index ed50467..0621ca5 100644 --- a/src/type/not/not.ts +++ b/src/type/not/not.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/null/index.ts b/src/type/null/index.ts index 208f1b6..5de0804 100644 --- a/src/type/null/index.ts +++ b/src/type/null/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/null/null.ts b/src/type/null/null.ts index 0d4097c..b18696a 100644 --- a/src/type/null/null.ts +++ b/src/type/null/null.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/number/index.ts b/src/type/number/index.ts index 0f4921b..bf0a3b9 100644 --- a/src/type/number/index.ts +++ b/src/type/number/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/number/number.ts b/src/type/number/number.ts index 8dec7f7..9780829 100644 --- a/src/type/number/number.ts +++ b/src/type/number/number.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/object/index.ts b/src/type/object/index.ts index 4da881b..a094c13 100644 --- a/src/type/object/index.ts +++ b/src/type/object/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/object/object.ts b/src/type/object/object.ts index fbb001b..a0df753 100644 --- a/src/type/object/object.ts +++ b/src/type/object/object.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/omit/index.ts b/src/type/omit/index.ts index 9d19aab..7aba43b 100644 --- a/src/type/omit/index.ts +++ b/src/type/omit/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/omit/omit-from-mapped-key.ts b/src/type/omit/omit-from-mapped-key.ts index 78356d3..5a41fed 100644 --- a/src/type/omit/omit-from-mapped-key.ts +++ b/src/type/omit/omit-from-mapped-key.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/omit/omit-from-mapped-result.ts b/src/type/omit/omit-from-mapped-result.ts index f4c1d22..d7eccab 100644 --- a/src/type/omit/omit-from-mapped-result.ts +++ b/src/type/omit/omit-from-mapped-result.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/omit/omit.ts b/src/type/omit/omit.ts index 5e43406..8e2ff38 100644 --- a/src/type/omit/omit.ts +++ b/src/type/omit/omit.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/optional/index.ts b/src/type/optional/index.ts index d0bbd15..06a5dd0 100644 --- a/src/type/optional/index.ts +++ b/src/type/optional/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/optional/optional-from-mapped-result.ts b/src/type/optional/optional-from-mapped-result.ts index 90ffb86..36fc535 100644 --- a/src/type/optional/optional-from-mapped-result.ts +++ b/src/type/optional/optional-from-mapped-result.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/optional/optional.ts b/src/type/optional/optional.ts index 7d9cecd..aedf835 100644 --- a/src/type/optional/optional.ts +++ b/src/type/optional/optional.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/parameters/index.ts b/src/type/parameters/index.ts index c3837a4..a73da47 100644 --- a/src/type/parameters/index.ts +++ b/src/type/parameters/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/parameters/parameters.ts b/src/type/parameters/parameters.ts index 27d2649..e310d8b 100644 --- a/src/type/parameters/parameters.ts +++ b/src/type/parameters/parameters.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/partial/index.ts b/src/type/partial/index.ts index 5776128..1ffe2ce 100644 --- a/src/type/partial/index.ts +++ b/src/type/partial/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/partial/partial-from-mapped-result.ts b/src/type/partial/partial-from-mapped-result.ts index c884756..f3c43f7 100644 --- a/src/type/partial/partial-from-mapped-result.ts +++ b/src/type/partial/partial-from-mapped-result.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/partial/partial.ts b/src/type/partial/partial.ts index edb9a4c..c7a7786 100644 --- a/src/type/partial/partial.ts +++ b/src/type/partial/partial.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/patterns/index.ts b/src/type/patterns/index.ts index ac15e8c..f021f5c 100644 --- a/src/type/patterns/index.ts +++ b/src/type/patterns/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/patterns/patterns.ts b/src/type/patterns/patterns.ts index b40cdce..8bab006 100644 --- a/src/type/patterns/patterns.ts +++ b/src/type/patterns/patterns.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/pick/index.ts b/src/type/pick/index.ts index 24b5324..ce4b7b1 100644 --- a/src/type/pick/index.ts +++ b/src/type/pick/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/pick/pick-from-mapped-key.ts b/src/type/pick/pick-from-mapped-key.ts index e0310d8..a149543 100644 --- a/src/type/pick/pick-from-mapped-key.ts +++ b/src/type/pick/pick-from-mapped-key.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/pick/pick-from-mapped-result.ts b/src/type/pick/pick-from-mapped-result.ts index 5a73a80..e49e203 100644 --- a/src/type/pick/pick-from-mapped-result.ts +++ b/src/type/pick/pick-from-mapped-result.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/pick/pick.ts b/src/type/pick/pick.ts index 180086f..9faa3da 100644 --- a/src/type/pick/pick.ts +++ b/src/type/pick/pick.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/promise/index.ts b/src/type/promise/index.ts index 80ba4f7..9804959 100644 --- a/src/type/promise/index.ts +++ b/src/type/promise/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/promise/promise.ts b/src/type/promise/promise.ts index 650c92f..5ff0075 100644 --- a/src/type/promise/promise.ts +++ b/src/type/promise/promise.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/readonly-optional/index.ts b/src/type/readonly-optional/index.ts index 08201d3..40ceab4 100644 --- a/src/type/readonly-optional/index.ts +++ b/src/type/readonly-optional/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/readonly-optional/readonly-optional.ts b/src/type/readonly-optional/readonly-optional.ts index 7ac49ff..4669f3f 100644 --- a/src/type/readonly-optional/readonly-optional.ts +++ b/src/type/readonly-optional/readonly-optional.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/readonly/index.ts b/src/type/readonly/index.ts index 5d6feeb..c33cc91 100644 --- a/src/type/readonly/index.ts +++ b/src/type/readonly/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/readonly/readonly-from-mapped-result.ts b/src/type/readonly/readonly-from-mapped-result.ts index 555b0b1..ebac401 100644 --- a/src/type/readonly/readonly-from-mapped-result.ts +++ b/src/type/readonly/readonly-from-mapped-result.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/readonly/readonly.ts b/src/type/readonly/readonly.ts index 7d84a86..7b7eb46 100644 --- a/src/type/readonly/readonly.ts +++ b/src/type/readonly/readonly.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/record/index.ts b/src/type/record/index.ts index 9db503f..d99c7c4 100644 --- a/src/type/record/index.ts +++ b/src/type/record/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/record/record.ts b/src/type/record/record.ts index f18cc47..8db8504 100644 --- a/src/type/record/record.ts +++ b/src/type/record/record.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/recursive/index.ts b/src/type/recursive/index.ts index a5a2fa9..428c86d 100644 --- a/src/type/recursive/index.ts +++ b/src/type/recursive/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/recursive/recursive.ts b/src/type/recursive/recursive.ts index d6e08d8..8e4207b 100644 --- a/src/type/recursive/recursive.ts +++ b/src/type/recursive/recursive.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/ref/index.ts b/src/type/ref/index.ts index 39ebb64..d474b31 100644 --- a/src/type/ref/index.ts +++ b/src/type/ref/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/ref/ref.ts b/src/type/ref/ref.ts index d82153b..910f611 100644 --- a/src/type/ref/ref.ts +++ b/src/type/ref/ref.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/regexp/index.ts b/src/type/regexp/index.ts index c0ff25b..4099590 100644 --- a/src/type/regexp/index.ts +++ b/src/type/regexp/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/regexp/regexp.ts b/src/type/regexp/regexp.ts index 42d621a..b08477d 100644 --- a/src/type/regexp/regexp.ts +++ b/src/type/regexp/regexp.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/registry/format.ts b/src/type/registry/format.ts index 306a288..4a25716 100644 --- a/src/type/registry/format.ts +++ b/src/type/registry/format.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/registry/index.ts b/src/type/registry/index.ts index 8c9fc54..ec15b22 100644 --- a/src/type/registry/index.ts +++ b/src/type/registry/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/registry/type.ts b/src/type/registry/type.ts index eb77649..3d683f7 100644 --- a/src/type/registry/type.ts +++ b/src/type/registry/type.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/required/index.ts b/src/type/required/index.ts index 67284c7..8f0cdd3 100644 --- a/src/type/required/index.ts +++ b/src/type/required/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/required/required-from-mapped-result.ts b/src/type/required/required-from-mapped-result.ts index fce4cc9..fe500a5 100644 --- a/src/type/required/required-from-mapped-result.ts +++ b/src/type/required/required-from-mapped-result.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/required/required.ts b/src/type/required/required.ts index d40914a..dcb029a 100644 --- a/src/type/required/required.ts +++ b/src/type/required/required.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/rest/index.ts b/src/type/rest/index.ts index 51e2b93..3dc0521 100644 --- a/src/type/rest/index.ts +++ b/src/type/rest/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/rest/rest.ts b/src/type/rest/rest.ts index 7bb7018..16934ab 100644 --- a/src/type/rest/rest.ts +++ b/src/type/rest/rest.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/return-type/index.ts b/src/type/return-type/index.ts index 4c65870..f9b0431 100644 --- a/src/type/return-type/index.ts +++ b/src/type/return-type/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/return-type/return-type.ts b/src/type/return-type/return-type.ts index 1cc7905..baf8109 100644 --- a/src/type/return-type/return-type.ts +++ b/src/type/return-type/return-type.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/schema/anyschema.ts b/src/type/schema/anyschema.ts index 5c4eee3..86032d7 100644 --- a/src/type/schema/anyschema.ts +++ b/src/type/schema/anyschema.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/schema/index.ts b/src/type/schema/index.ts index a4a9161..12863f1 100644 --- a/src/type/schema/index.ts +++ b/src/type/schema/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/schema/schema.ts b/src/type/schema/schema.ts index db0b847..51161bb 100644 --- a/src/type/schema/schema.ts +++ b/src/type/schema/schema.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/sets/index.ts b/src/type/sets/index.ts index e81a523..b78e328 100644 --- a/src/type/sets/index.ts +++ b/src/type/sets/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/sets/set.ts b/src/type/sets/set.ts index 782bcb3..76a2444 100644 --- a/src/type/sets/set.ts +++ b/src/type/sets/set.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/static/index.ts b/src/type/static/index.ts index 7c178d2..8301824 100644 --- a/src/type/static/index.ts +++ b/src/type/static/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/static/static.ts b/src/type/static/static.ts index 2cad5e3..9cb6e71 100644 --- a/src/type/static/static.ts +++ b/src/type/static/static.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/string/index.ts b/src/type/string/index.ts index 84001e8..1c5acdf 100644 --- a/src/type/string/index.ts +++ b/src/type/string/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/string/string.ts b/src/type/string/string.ts index 742dd8b..0f31f29 100644 --- a/src/type/string/string.ts +++ b/src/type/string/string.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/symbol/index.ts b/src/type/symbol/index.ts index 4a6a977..06b82c6 100644 --- a/src/type/symbol/index.ts +++ b/src/type/symbol/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/symbol/symbol.ts b/src/type/symbol/symbol.ts index beaccf5..f0242e1 100644 --- a/src/type/symbol/symbol.ts +++ b/src/type/symbol/symbol.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/symbols/index.ts b/src/type/symbols/index.ts index 2e174a9..71c59d3 100644 --- a/src/type/symbols/index.ts +++ b/src/type/symbols/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/symbols/symbols.ts b/src/type/symbols/symbols.ts index 1688f3f..6e3d090 100644 --- a/src/type/symbols/symbols.ts +++ b/src/type/symbols/symbols.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/template-literal/finite.ts b/src/type/template-literal/finite.ts index fbbeb5c..b70d7c3 100644 --- a/src/type/template-literal/finite.ts +++ b/src/type/template-literal/finite.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/template-literal/generate.ts b/src/type/template-literal/generate.ts index 03c7aa0..b6d5976 100644 --- a/src/type/template-literal/generate.ts +++ b/src/type/template-literal/generate.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/template-literal/index.ts b/src/type/template-literal/index.ts index 86c2aa1..b82f4ec 100644 --- a/src/type/template-literal/index.ts +++ b/src/type/template-literal/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/template-literal/parse.ts b/src/type/template-literal/parse.ts index f0a7efb..36620cd 100644 --- a/src/type/template-literal/parse.ts +++ b/src/type/template-literal/parse.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/template-literal/pattern.ts b/src/type/template-literal/pattern.ts index f90a22a..2523f77 100644 --- a/src/type/template-literal/pattern.ts +++ b/src/type/template-literal/pattern.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/template-literal/syntax.ts b/src/type/template-literal/syntax.ts index f67c917..94705b4 100644 --- a/src/type/template-literal/syntax.ts +++ b/src/type/template-literal/syntax.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/template-literal/template-literal.ts b/src/type/template-literal/template-literal.ts index 1a8638b..5b3daec 100644 --- a/src/type/template-literal/template-literal.ts +++ b/src/type/template-literal/template-literal.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/template-literal/union.ts b/src/type/template-literal/union.ts index ae6fe02..870f2eb 100644 --- a/src/type/template-literal/union.ts +++ b/src/type/template-literal/union.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/transform/index.ts b/src/type/transform/index.ts index 1745160..bbc0c93 100644 --- a/src/type/transform/index.ts +++ b/src/type/transform/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/transform/transform.ts b/src/type/transform/transform.ts index 40db8ed..559f33b 100644 --- a/src/type/transform/transform.ts +++ b/src/type/transform/transform.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/tuple/index.ts b/src/type/tuple/index.ts index e175518..21ed4c1 100644 --- a/src/type/tuple/index.ts +++ b/src/type/tuple/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/tuple/tuple.ts b/src/type/tuple/tuple.ts index ebe513b..7b8127c 100644 --- a/src/type/tuple/tuple.ts +++ b/src/type/tuple/tuple.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/type/index.ts b/src/type/type/index.ts index b27d78e..c1d403f 100644 --- a/src/type/type/index.ts +++ b/src/type/type/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/type/javascript.ts b/src/type/type/javascript.ts index b511f6b..ce5e726 100644 --- a/src/type/type/javascript.ts +++ b/src/type/type/javascript.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/type/json.ts b/src/type/type/json.ts index aa3ac53..32dd14e 100644 --- a/src/type/type/json.ts +++ b/src/type/type/json.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/type/type.ts b/src/type/type/type.ts index 7b1e115..73c7b8f 100644 --- a/src/type/type/type.ts +++ b/src/type/type/type.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/uint8array/index.ts b/src/type/uint8array/index.ts index 876b637..0d4a09b 100644 --- a/src/type/uint8array/index.ts +++ b/src/type/uint8array/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/uint8array/uint8array.ts b/src/type/uint8array/uint8array.ts index 1839f20..71bf818 100644 --- a/src/type/uint8array/uint8array.ts +++ b/src/type/uint8array/uint8array.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/undefined/index.ts b/src/type/undefined/index.ts index f77e775..d0d1be3 100644 --- a/src/type/undefined/index.ts +++ b/src/type/undefined/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/undefined/undefined.ts b/src/type/undefined/undefined.ts index 221f3de..26806d6 100644 --- a/src/type/undefined/undefined.ts +++ b/src/type/undefined/undefined.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/union/index.ts b/src/type/union/index.ts index 73ba8e4..1bc6442 100644 --- a/src/type/union/index.ts +++ b/src/type/union/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/union/union-create.ts b/src/type/union/union-create.ts index 184afa6..9912c6c 100644 --- a/src/type/union/union-create.ts +++ b/src/type/union/union-create.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/union/union-evaluated.ts b/src/type/union/union-evaluated.ts index b490028..896d8a6 100644 --- a/src/type/union/union-evaluated.ts +++ b/src/type/union/union-evaluated.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/union/union-type.ts b/src/type/union/union-type.ts index 1cb251f..39be9fb 100644 --- a/src/type/union/union-type.ts +++ b/src/type/union/union-type.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/union/union.ts b/src/type/union/union.ts index 8fe16c1..bddf039 100644 --- a/src/type/union/union.ts +++ b/src/type/union/union.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/unknown/index.ts b/src/type/unknown/index.ts index d1a3119..6d09498 100644 --- a/src/type/unknown/index.ts +++ b/src/type/unknown/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/unknown/unknown.ts b/src/type/unknown/unknown.ts index 35deea0..cbabcab 100644 --- a/src/type/unknown/unknown.ts +++ b/src/type/unknown/unknown.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/unsafe/index.ts b/src/type/unsafe/index.ts index 07f1104..c7cb4cb 100644 --- a/src/type/unsafe/index.ts +++ b/src/type/unsafe/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/unsafe/unsafe.ts b/src/type/unsafe/unsafe.ts index 370775c..da543bf 100644 --- a/src/type/unsafe/unsafe.ts +++ b/src/type/unsafe/unsafe.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/void/index.ts b/src/type/void/index.ts index 26736cb..88c3d1e 100644 --- a/src/type/void/index.ts +++ b/src/type/void/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/type/void/void.ts b/src/type/void/void.ts index 174715a..e383dfa 100644 --- a/src/type/void/void.ts +++ b/src/type/void/void.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/type +@alkdev/typebox/type The MIT License (MIT) diff --git a/src/value/assert/assert.ts b/src/value/assert/assert.ts index 9b436ca..cbd320b 100644 --- a/src/value/assert/assert.ts +++ b/src/value/assert/assert.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/assert/index.ts b/src/value/assert/index.ts index 8cd9dfc..be96e6f 100644 --- a/src/value/assert/index.ts +++ b/src/value/assert/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/cast/cast.ts b/src/value/cast/cast.ts index e1a4edf..60cd1e9 100644 --- a/src/value/cast/cast.ts +++ b/src/value/cast/cast.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/cast/index.ts b/src/value/cast/index.ts index 1b44628..32523b5 100644 --- a/src/value/cast/index.ts +++ b/src/value/cast/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/check/check.ts b/src/value/check/check.ts index 69fb024..da9af5d 100644 --- a/src/value/check/check.ts +++ b/src/value/check/check.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/check/index.ts b/src/value/check/index.ts index e0ca228..23141a9 100644 --- a/src/value/check/index.ts +++ b/src/value/check/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/clean/clean.ts b/src/value/clean/clean.ts index d102361..eb312da 100644 --- a/src/value/clean/clean.ts +++ b/src/value/clean/clean.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/clean/index.ts b/src/value/clean/index.ts index d9f9c97..1ce2cf3 100644 --- a/src/value/clean/index.ts +++ b/src/value/clean/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/clone/clone.ts b/src/value/clone/clone.ts index 6f34565..d4d5b7b 100644 --- a/src/value/clone/clone.ts +++ b/src/value/clone/clone.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/clone/index.ts b/src/value/clone/index.ts index dbd1771..3bc642c 100644 --- a/src/value/clone/index.ts +++ b/src/value/clone/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/convert/convert.ts b/src/value/convert/convert.ts index 4628225..5aa8d1b 100644 --- a/src/value/convert/convert.ts +++ b/src/value/convert/convert.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/convert/index.ts b/src/value/convert/index.ts index dea9bc2..cc82b16 100644 --- a/src/value/convert/index.ts +++ b/src/value/convert/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/create/create.ts b/src/value/create/create.ts index ce635d3..0afc9e5 100644 --- a/src/value/create/create.ts +++ b/src/value/create/create.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/create/index.ts b/src/value/create/index.ts index 50c727d..bfbc8cd 100644 --- a/src/value/create/index.ts +++ b/src/value/create/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/decode/decode.ts b/src/value/decode/decode.ts index c5160bb..d684bda 100644 --- a/src/value/decode/decode.ts +++ b/src/value/decode/decode.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/decode/index.ts b/src/value/decode/index.ts index 2f21ce6..17e332d 100644 --- a/src/value/decode/index.ts +++ b/src/value/decode/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/default/default.ts b/src/value/default/default.ts index 19a3c71..2daad10 100644 --- a/src/value/default/default.ts +++ b/src/value/default/default.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/default/index.ts b/src/value/default/index.ts index f1a9d1d..b8663b8 100644 --- a/src/value/default/index.ts +++ b/src/value/default/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/delta/delta.ts b/src/value/delta/delta.ts index 0ebdd1f..7b55e72 100644 --- a/src/value/delta/delta.ts +++ b/src/value/delta/delta.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/delta/index.ts b/src/value/delta/index.ts index c9c7cea..ecd82ba 100644 --- a/src/value/delta/index.ts +++ b/src/value/delta/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/deref/deref.ts b/src/value/deref/deref.ts index 46b6c04..1a37240 100644 --- a/src/value/deref/deref.ts +++ b/src/value/deref/deref.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/deref/index.ts b/src/value/deref/index.ts index 84cf138..d7a585c 100644 --- a/src/value/deref/index.ts +++ b/src/value/deref/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/encode/encode.ts b/src/value/encode/encode.ts index 7de2e08..9246507 100644 --- a/src/value/encode/encode.ts +++ b/src/value/encode/encode.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/encode/index.ts b/src/value/encode/index.ts index 9513c67..9260234 100644 --- a/src/value/encode/index.ts +++ b/src/value/encode/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/equal/equal.ts b/src/value/equal/equal.ts index 86dfe50..17ac49f 100644 --- a/src/value/equal/equal.ts +++ b/src/value/equal/equal.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/equal/index.ts b/src/value/equal/index.ts index 10dd09b..b5eaa21 100644 --- a/src/value/equal/index.ts +++ b/src/value/equal/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/guard/guard.ts b/src/value/guard/guard.ts index 3d1ba53..b44f39e 100644 --- a/src/value/guard/guard.ts +++ b/src/value/guard/guard.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/guard/index.ts b/src/value/guard/index.ts index 863740c..45909ce 100644 --- a/src/value/guard/index.ts +++ b/src/value/guard/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/hash/hash.ts b/src/value/hash/hash.ts index 18d5b33..03a339d 100644 --- a/src/value/hash/hash.ts +++ b/src/value/hash/hash.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/hash/index.ts b/src/value/hash/index.ts index fa89e67..561f579 100644 --- a/src/value/hash/index.ts +++ b/src/value/hash/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/index.ts b/src/value/index.ts index f7e0ebc..63bb468 100644 --- a/src/value/index.ts +++ b/src/value/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/mutate/index.ts b/src/value/mutate/index.ts index e87c76b..8d0c7c0 100644 --- a/src/value/mutate/index.ts +++ b/src/value/mutate/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/mutate/mutate.ts b/src/value/mutate/mutate.ts index fee18a0..3707d3c 100644 --- a/src/value/mutate/mutate.ts +++ b/src/value/mutate/mutate.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/parse/index.ts b/src/value/parse/index.ts index 264a343..ddef13a 100644 --- a/src/value/parse/index.ts +++ b/src/value/parse/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/parse/parse.ts b/src/value/parse/parse.ts index 335fe3c..0a66480 100644 --- a/src/value/parse/parse.ts +++ b/src/value/parse/parse.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/pointer/index.ts b/src/value/pointer/index.ts index 7f627d3..78d65e1 100644 --- a/src/value/pointer/index.ts +++ b/src/value/pointer/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/pointer/pointer.ts b/src/value/pointer/pointer.ts index e0681fc..5f4d8df 100644 --- a/src/value/pointer/pointer.ts +++ b/src/value/pointer/pointer.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/transform/decode.ts b/src/value/transform/decode.ts index 1e9092f..f350b3c 100644 --- a/src/value/transform/decode.ts +++ b/src/value/transform/decode.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/transform/encode.ts b/src/value/transform/encode.ts index b72eea7..c96b9b4 100644 --- a/src/value/transform/encode.ts +++ b/src/value/transform/encode.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/transform/has.ts b/src/value/transform/has.ts index c4116d2..d244378 100644 --- a/src/value/transform/has.ts +++ b/src/value/transform/has.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/transform/index.ts b/src/value/transform/index.ts index 51ce76d..0565edd 100644 --- a/src/value/transform/index.ts +++ b/src/value/transform/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/value/index.ts b/src/value/value/index.ts index 1193d27..0ff4f4c 100644 --- a/src/value/value/index.ts +++ b/src/value/value/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/src/value/value/value.ts b/src/value/value/value.ts index 54e9bd4..6e218dd 100644 --- a/src/value/value/value.ts +++ b/src/value/value/value.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox/value +@alkdev/typebox/value The MIT License (MIT) diff --git a/task/benchmark/compression/module/typebox-compiler.ts b/task/benchmark/compression/module/typebox-compiler.ts index 4d23bb2..1b8974d 100644 --- a/task/benchmark/compression/module/typebox-compiler.ts +++ b/task/benchmark/compression/module/typebox-compiler.ts @@ -1,3 +1,3 @@ -import { TypeCompiler } from '@sinclair/typebox/compiler' +import { TypeCompiler } from '@alkdev/typebox/compiler' console.log(TypeCompiler) diff --git a/task/benchmark/compression/module/typebox-errors.ts b/task/benchmark/compression/module/typebox-errors.ts index f1de815..ea5cd45 100644 --- a/task/benchmark/compression/module/typebox-errors.ts +++ b/task/benchmark/compression/module/typebox-errors.ts @@ -1,3 +1,3 @@ -import * as Errors from '@sinclair/typebox/errors' +import * as Errors from '@alkdev/typebox/errors' console.log(Errors) diff --git a/task/benchmark/compression/module/typebox-syntax.ts b/task/benchmark/compression/module/typebox-syntax.ts index 311871c..e80e510 100644 --- a/task/benchmark/compression/module/typebox-syntax.ts +++ b/task/benchmark/compression/module/typebox-syntax.ts @@ -1,3 +1,3 @@ -import * as Syntax from '@sinclair/typebox/syntax' +import * as Syntax from '@alkdev/typebox/syntax' console.log(Syntax) diff --git a/task/benchmark/compression/module/typebox-system.ts b/task/benchmark/compression/module/typebox-system.ts index f148a55..d54ecc2 100644 --- a/task/benchmark/compression/module/typebox-system.ts +++ b/task/benchmark/compression/module/typebox-system.ts @@ -1,3 +1,3 @@ -import { TypeSystem } from '@sinclair/typebox/system' +import { TypeSystem } from '@alkdev/typebox/system' console.log(TypeSystem) diff --git a/task/benchmark/compression/module/typebox-value.ts b/task/benchmark/compression/module/typebox-value.ts index a5e5633..5a330bd 100644 --- a/task/benchmark/compression/module/typebox-value.ts +++ b/task/benchmark/compression/module/typebox-value.ts @@ -1,3 +1,3 @@ -import { Value } from '@sinclair/typebox/value' +import { Value } from '@alkdev/typebox/value' console.log(Value) diff --git a/task/benchmark/compression/module/typebox.ts b/task/benchmark/compression/module/typebox.ts index 0b01566..980a564 100644 --- a/task/benchmark/compression/module/typebox.ts +++ b/task/benchmark/compression/module/typebox.ts @@ -1,3 +1,3 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' const T = Type.String() diff --git a/task/benchmark/measurement/module/cases.ts b/task/benchmark/measurement/module/cases.ts index fe2ff6a..1b5a268 100644 --- a/task/benchmark/measurement/module/cases.ts +++ b/task/benchmark/measurement/module/cases.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' export namespace Cases { export const Literal_String = Type.Literal('hello') diff --git a/task/benchmark/measurement/module/check.ts b/task/benchmark/measurement/module/check.ts index 99d3ced..f9307f0 100644 --- a/task/benchmark/measurement/module/check.ts +++ b/task/benchmark/measurement/module/check.ts @@ -1,8 +1,8 @@ import { Cases } from './cases' import { Benchmark } from './benchmark' -import { TypeCompiler } from '@sinclair/typebox/compiler' -import { TSchema, TypeGuard } from '@sinclair/typebox' -import { Value } from '@sinclair/typebox/value' +import { TypeCompiler } from '@alkdev/typebox/compiler' +import { TSchema, TypeGuard } from '@alkdev/typebox' +import { Value } from '@alkdev/typebox/value' import Ajv from 'ajv' diff --git a/task/benchmark/measurement/module/compile.ts b/task/benchmark/measurement/module/compile.ts index ee0ade8..4988dc6 100644 --- a/task/benchmark/measurement/module/compile.ts +++ b/task/benchmark/measurement/module/compile.ts @@ -1,7 +1,7 @@ import { Cases } from './cases' import { Benchmark } from './benchmark' -import { TypeCompiler } from '@sinclair/typebox/compiler' -import { TSchema, TypeGuard } from '@sinclair/typebox' +import { TypeCompiler } from '@alkdev/typebox/compiler' +import { TSchema, TypeGuard } from '@alkdev/typebox' import Ajv from 'ajv' const ajv = new Ajv() // ensure single instance diff --git a/task/build/cjs/build.ts b/task/build/cjs/build.ts index 6c6cba9..9af3dc3 100644 --- a/task/build/cjs/build.ts +++ b/task/build/cjs/build.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox +@alkdev/typebox The MIT License (MIT) diff --git a/task/build/cjs/compile.ts b/task/build/cjs/compile.ts index 4136621..a117214 100644 --- a/task/build/cjs/compile.ts +++ b/task/build/cjs/compile.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox +@alkdev/typebox The MIT License (MIT) diff --git a/task/build/esm/build.ts b/task/build/esm/build.ts index cd8af08..933974e 100644 --- a/task/build/esm/build.ts +++ b/task/build/esm/build.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox +@alkdev/typebox The MIT License (MIT) diff --git a/task/build/esm/compile.ts b/task/build/esm/compile.ts index d30e8d0..12039f4 100644 --- a/task/build/esm/compile.ts +++ b/task/build/esm/compile.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox +@alkdev/typebox The MIT License (MIT) diff --git a/task/build/esm/convert-to-esm.ts b/task/build/esm/convert-to-esm.ts index 65d4330..9087c1c 100644 --- a/task/build/esm/convert-to-esm.ts +++ b/task/build/esm/convert-to-esm.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox +@alkdev/typebox The MIT License (MIT) diff --git a/task/build/index.ts b/task/build/index.ts index c2647c4..7d1aeab 100644 --- a/task/build/index.ts +++ b/task/build/index.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox +@alkdev/typebox The MIT License (MIT) diff --git a/task/build/notices/remove-notices.ts b/task/build/notices/remove-notices.ts index 14a94d4..9d8c62e 100644 --- a/task/build/notices/remove-notices.ts +++ b/task/build/notices/remove-notices.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox +@alkdev/typebox The MIT License (MIT) diff --git a/task/build/package/build.ts b/task/build/package/build.ts index 58f8d66..f6e0898 100644 --- a/task/build/package/build.ts +++ b/task/build/package/build.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox +@alkdev/typebox The MIT License (MIT) diff --git a/task/build/package/create-package-json-redirect.ts b/task/build/package/create-package-json-redirect.ts index 3c179ac..aad8a3e 100644 --- a/task/build/package/create-package-json-redirect.ts +++ b/task/build/package/create-package-json-redirect.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox +@alkdev/typebox The MIT License (MIT) diff --git a/task/build/package/create-package-json.ts b/task/build/package/create-package-json.ts index f15c9a7..94446d5 100644 --- a/task/build/package/create-package-json.ts +++ b/task/build/package/create-package-json.ts @@ -1,6 +1,6 @@ /*-------------------------------------------------------------------------- -@sinclair/typebox +@alkdev/typebox The MIT License (MIT) diff --git a/test/runtime/compiler-ajv/any.ts b/test/runtime/compiler-ajv/any.ts index 695113f..3f9bd12 100644 --- a/test/runtime/compiler-ajv/any.ts +++ b/test/runtime/compiler-ajv/any.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok } from './validate' describe('compiler-ajv/Any', () => { diff --git a/test/runtime/compiler-ajv/array.ts b/test/runtime/compiler-ajv/array.ts index 589bc03..e17f242 100644 --- a/test/runtime/compiler-ajv/array.ts +++ b/test/runtime/compiler-ajv/array.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler-ajv/Array', () => { diff --git a/test/runtime/compiler-ajv/boolean.ts b/test/runtime/compiler-ajv/boolean.ts index 6ff4f78..898d27c 100644 --- a/test/runtime/compiler-ajv/boolean.ts +++ b/test/runtime/compiler-ajv/boolean.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler-ajv/Boolean', () => { diff --git a/test/runtime/compiler-ajv/composite.ts b/test/runtime/compiler-ajv/composite.ts index 3d1d41a..93019e3 100644 --- a/test/runtime/compiler-ajv/composite.ts +++ b/test/runtime/compiler-ajv/composite.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../assert' import { Ok, Fail } from './validate' diff --git a/test/runtime/compiler-ajv/const.ts b/test/runtime/compiler-ajv/const.ts index 21705e2..3ab4543 100644 --- a/test/runtime/compiler-ajv/const.ts +++ b/test/runtime/compiler-ajv/const.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok } from './validate' describe('compiler-ajv/Const', () => { diff --git a/test/runtime/compiler-ajv/date.ts b/test/runtime/compiler-ajv/date.ts index f5f8e12..00b25a8 100644 --- a/test/runtime/compiler-ajv/date.ts +++ b/test/runtime/compiler-ajv/date.ts @@ -2,7 +2,7 @@ // No Longer Supported // --------------------------------------------------- -// import { Type } from '@sinclair/typebox' +// import { Type } from '@alkdev/typebox' // import { Ok, Fail } from './validate' // ---------------------------------------------------- diff --git a/test/runtime/compiler-ajv/enum.ts b/test/runtime/compiler-ajv/enum.ts index c4599be..fe4ff7a 100644 --- a/test/runtime/compiler-ajv/enum.ts +++ b/test/runtime/compiler-ajv/enum.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler-ajv/Enum', () => { diff --git a/test/runtime/compiler-ajv/integer.ts b/test/runtime/compiler-ajv/integer.ts index 664eacf..7302453 100644 --- a/test/runtime/compiler-ajv/integer.ts +++ b/test/runtime/compiler-ajv/integer.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler-ajv/Integer', () => { diff --git a/test/runtime/compiler-ajv/intersect.ts b/test/runtime/compiler-ajv/intersect.ts index 00fe0ac..87d9f51 100644 --- a/test/runtime/compiler-ajv/intersect.ts +++ b/test/runtime/compiler-ajv/intersect.ts @@ -1,4 +1,4 @@ -import { Type, Static } from '@sinclair/typebox' +import { Type, Static } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler-ajv/Intersect', () => { diff --git a/test/runtime/compiler-ajv/keyof.ts b/test/runtime/compiler-ajv/keyof.ts index 0734a2f..77ede7a 100644 --- a/test/runtime/compiler-ajv/keyof.ts +++ b/test/runtime/compiler-ajv/keyof.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler-ajv/KeyOf', () => { diff --git a/test/runtime/compiler-ajv/literal.ts b/test/runtime/compiler-ajv/literal.ts index a41d690..c4d50ce 100644 --- a/test/runtime/compiler-ajv/literal.ts +++ b/test/runtime/compiler-ajv/literal.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler-ajv/Literal', () => { diff --git a/test/runtime/compiler-ajv/module.ts b/test/runtime/compiler-ajv/module.ts index 0797dd4..3863e31 100644 --- a/test/runtime/compiler-ajv/module.ts +++ b/test/runtime/compiler-ajv/module.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler-ajv/Module', () => { diff --git a/test/runtime/compiler-ajv/never.ts b/test/runtime/compiler-ajv/never.ts index 49904f4..bafd285 100644 --- a/test/runtime/compiler-ajv/never.ts +++ b/test/runtime/compiler-ajv/never.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Fail } from './validate' describe('compiler-ajv/Never', () => { diff --git a/test/runtime/compiler-ajv/not.ts b/test/runtime/compiler-ajv/not.ts index 013cf28..d333b7f 100644 --- a/test/runtime/compiler-ajv/not.ts +++ b/test/runtime/compiler-ajv/not.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler-ajv/Not', () => { diff --git a/test/runtime/compiler-ajv/null.ts b/test/runtime/compiler-ajv/null.ts index 4947b0c..5510c94 100644 --- a/test/runtime/compiler-ajv/null.ts +++ b/test/runtime/compiler-ajv/null.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler-ajv/Null', () => { diff --git a/test/runtime/compiler-ajv/number.ts b/test/runtime/compiler-ajv/number.ts index 30dd7fb..bd9fba9 100644 --- a/test/runtime/compiler-ajv/number.ts +++ b/test/runtime/compiler-ajv/number.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler-ajv/Number', () => { diff --git a/test/runtime/compiler-ajv/object.ts b/test/runtime/compiler-ajv/object.ts index c096bc5..4fa454f 100644 --- a/test/runtime/compiler-ajv/object.ts +++ b/test/runtime/compiler-ajv/object.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler-ajv/Object', () => { diff --git a/test/runtime/compiler-ajv/omit.ts b/test/runtime/compiler-ajv/omit.ts index 0053c68..bb8e2e4 100644 --- a/test/runtime/compiler-ajv/omit.ts +++ b/test/runtime/compiler-ajv/omit.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' import { strictEqual } from 'assert' diff --git a/test/runtime/compiler-ajv/optional.ts b/test/runtime/compiler-ajv/optional.ts index a5d39dd..61966a8 100644 --- a/test/runtime/compiler-ajv/optional.ts +++ b/test/runtime/compiler-ajv/optional.ts @@ -1,5 +1,5 @@ import { strictEqual } from 'assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok } from './validate' describe('compiler-ajv/Optional', () => { diff --git a/test/runtime/compiler-ajv/partial.ts b/test/runtime/compiler-ajv/partial.ts index 5be5691..142f7bb 100644 --- a/test/runtime/compiler-ajv/partial.ts +++ b/test/runtime/compiler-ajv/partial.ts @@ -1,4 +1,4 @@ -import { Type, ReadonlyKind, OptionalKind } from '@sinclair/typebox' +import { Type, ReadonlyKind, OptionalKind } from '@alkdev/typebox' import { Ok } from './validate' import { Assert } from '../assert' diff --git a/test/runtime/compiler-ajv/pick.ts b/test/runtime/compiler-ajv/pick.ts index c628a1f..4520eaf 100644 --- a/test/runtime/compiler-ajv/pick.ts +++ b/test/runtime/compiler-ajv/pick.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' import { Assert } from '../assert' diff --git a/test/runtime/compiler-ajv/readonly-optional.ts b/test/runtime/compiler-ajv/readonly-optional.ts index cbdd883..b213b65 100644 --- a/test/runtime/compiler-ajv/readonly-optional.ts +++ b/test/runtime/compiler-ajv/readonly-optional.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok } from './validate' import { Assert } from '../assert' diff --git a/test/runtime/compiler-ajv/readonly.ts b/test/runtime/compiler-ajv/readonly.ts index c26dd62..4d2f52f 100644 --- a/test/runtime/compiler-ajv/readonly.ts +++ b/test/runtime/compiler-ajv/readonly.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok } from './validate' import { Assert } from '../assert' diff --git a/test/runtime/compiler-ajv/record.ts b/test/runtime/compiler-ajv/record.ts index 0dcba8f..79e5f3e 100644 --- a/test/runtime/compiler-ajv/record.ts +++ b/test/runtime/compiler-ajv/record.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler-ajv/Record', () => { diff --git a/test/runtime/compiler-ajv/recursive.ts b/test/runtime/compiler-ajv/recursive.ts index 0a04dc3..6bb9d7b 100644 --- a/test/runtime/compiler-ajv/recursive.ts +++ b/test/runtime/compiler-ajv/recursive.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' import { Assert } from '../assert/index' diff --git a/test/runtime/compiler-ajv/ref.ts b/test/runtime/compiler-ajv/ref.ts index ac0815b..76a87f9 100644 --- a/test/runtime/compiler-ajv/ref.ts +++ b/test/runtime/compiler-ajv/ref.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler-ajv/Ref', () => { diff --git a/test/runtime/compiler-ajv/required.ts b/test/runtime/compiler-ajv/required.ts index 8d1028a..a60c082 100644 --- a/test/runtime/compiler-ajv/required.ts +++ b/test/runtime/compiler-ajv/required.ts @@ -1,4 +1,4 @@ -import { Type, ReadonlyKind, OptionalKind } from '@sinclair/typebox' +import { Type, ReadonlyKind, OptionalKind } from '@alkdev/typebox' import { Ok, Fail } from './validate' import { Assert } from '../assert' diff --git a/test/runtime/compiler-ajv/string-pattern.ts b/test/runtime/compiler-ajv/string-pattern.ts index 71419b1..f223571 100644 --- a/test/runtime/compiler-ajv/string-pattern.ts +++ b/test/runtime/compiler-ajv/string-pattern.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler-ajv/StringPattern', () => { diff --git a/test/runtime/compiler-ajv/string.ts b/test/runtime/compiler-ajv/string.ts index 3372917..ef068c4 100644 --- a/test/runtime/compiler-ajv/string.ts +++ b/test/runtime/compiler-ajv/string.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler-ajv/String', () => { diff --git a/test/runtime/compiler-ajv/template-literal.ts b/test/runtime/compiler-ajv/template-literal.ts index ad083a5..a9cbfc6 100644 --- a/test/runtime/compiler-ajv/template-literal.ts +++ b/test/runtime/compiler-ajv/template-literal.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler-ajv/TemplateLiteral', () => { diff --git a/test/runtime/compiler-ajv/tuple.ts b/test/runtime/compiler-ajv/tuple.ts index 96dfc1a..e6050ef 100644 --- a/test/runtime/compiler-ajv/tuple.ts +++ b/test/runtime/compiler-ajv/tuple.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler-ajv/Tuple', () => { diff --git a/test/runtime/compiler-ajv/uint8array.ts b/test/runtime/compiler-ajv/uint8array.ts index b509795..962fa5a 100644 --- a/test/runtime/compiler-ajv/uint8array.ts +++ b/test/runtime/compiler-ajv/uint8array.ts @@ -1,7 +1,7 @@ // --------------------------------------------------- // No Longer Supported // --------------------------------------------------- -// import { Type } from '@sinclair/typebox' +// import { Type } from '@alkdev/typebox' // import { Ok, Fail } from './validate' // describe('compiler-ajv/Uint8Array', () => { // it('Should not validate number', () => { diff --git a/test/runtime/compiler-ajv/union.ts b/test/runtime/compiler-ajv/union.ts index ab18c1e..ba65fab 100644 --- a/test/runtime/compiler-ajv/union.ts +++ b/test/runtime/compiler-ajv/union.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler-ajv/Union', () => { diff --git a/test/runtime/compiler-ajv/unknown.ts b/test/runtime/compiler-ajv/unknown.ts index 8ad7cfa..faf1afe 100644 --- a/test/runtime/compiler-ajv/unknown.ts +++ b/test/runtime/compiler-ajv/unknown.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok } from './validate' describe('compiler-ajv/Unknown', () => { diff --git a/test/runtime/compiler-ajv/unsafe.ts b/test/runtime/compiler-ajv/unsafe.ts index 6a53eea..d7629bb 100644 --- a/test/runtime/compiler-ajv/unsafe.ts +++ b/test/runtime/compiler-ajv/unsafe.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler-ajv/Unsafe', () => { diff --git a/test/runtime/compiler-ajv/validate.ts b/test/runtime/compiler-ajv/validate.ts index baf279d..189b1b4 100644 --- a/test/runtime/compiler-ajv/validate.ts +++ b/test/runtime/compiler-ajv/validate.ts @@ -1,7 +1,7 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Value } from '@sinclair/typebox/value' +import { TypeGuard } from '@alkdev/typebox' +import { Value } from '@alkdev/typebox/value' -import { TSchema } from '@sinclair/typebox' +import { TSchema } from '@alkdev/typebox' import addFormats from 'ajv-formats' import Ajv, { AnySchema } from 'ajv/dist/2019' diff --git a/test/runtime/compiler-ajv/void.ts b/test/runtime/compiler-ajv/void.ts index 547ead1..bd435f4 100644 --- a/test/runtime/compiler-ajv/void.ts +++ b/test/runtime/compiler-ajv/void.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler-ajv/Void', () => { diff --git a/test/runtime/compiler/__members.ts b/test/runtime/compiler/__members.ts index 6ade7f4..eebf968 100644 --- a/test/runtime/compiler/__members.ts +++ b/test/runtime/compiler/__members.ts @@ -1,5 +1,5 @@ -import { TypeCompiler } from '@sinclair/typebox/compiler' -import { Type, TypeGuard, ValueGuard } from '@sinclair/typebox' +import { TypeCompiler } from '@alkdev/typebox/compiler' +import { Type, TypeGuard, ValueGuard } from '@alkdev/typebox' import { Assert } from '../assert/index' describe('compiler/TypeCheckMembers', () => { diff --git a/test/runtime/compiler/any.ts b/test/runtime/compiler/any.ts index fb4c7de..6f332f3 100644 --- a/test/runtime/compiler/any.ts +++ b/test/runtime/compiler/any.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok } from './validate' describe('compiler/Any', () => { diff --git a/test/runtime/compiler/argument.ts b/test/runtime/compiler/argument.ts index 502df49..65d68be 100644 --- a/test/runtime/compiler/argument.ts +++ b/test/runtime/compiler/argument.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok } from './validate' describe('compiler/Argument', () => { diff --git a/test/runtime/compiler/array.ts b/test/runtime/compiler/array.ts index b6a0d42..7128061 100644 --- a/test/runtime/compiler/array.ts +++ b/test/runtime/compiler/array.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Array', () => { diff --git a/test/runtime/compiler/async-iterator.ts b/test/runtime/compiler/async-iterator.ts index 52dcf5e..2800654 100644 --- a/test/runtime/compiler/async-iterator.ts +++ b/test/runtime/compiler/async-iterator.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/AsyncIterator', () => { diff --git a/test/runtime/compiler/bigint.ts b/test/runtime/compiler/bigint.ts index 2e9c48a..f16dc68 100644 --- a/test/runtime/compiler/bigint.ts +++ b/test/runtime/compiler/bigint.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/BigInt', () => { diff --git a/test/runtime/compiler/boolean.ts b/test/runtime/compiler/boolean.ts index e401585..835e075 100644 --- a/test/runtime/compiler/boolean.ts +++ b/test/runtime/compiler/boolean.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Boolean', () => { diff --git a/test/runtime/compiler/composite.ts b/test/runtime/compiler/composite.ts index 960a1d7..c0749b4 100644 --- a/test/runtime/compiler/composite.ts +++ b/test/runtime/compiler/composite.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Composite', () => { diff --git a/test/runtime/compiler/const.ts b/test/runtime/compiler/const.ts index a852675..65ebb3f 100644 --- a/test/runtime/compiler/const.ts +++ b/test/runtime/compiler/const.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok } from './validate' describe('compiler/Const', () => { diff --git a/test/runtime/compiler/constructor.ts b/test/runtime/compiler/constructor.ts index 324faf1..7622b36 100644 --- a/test/runtime/compiler/constructor.ts +++ b/test/runtime/compiler/constructor.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Constructor', () => { diff --git a/test/runtime/compiler/date.ts b/test/runtime/compiler/date.ts index b4425f6..3965b40 100644 --- a/test/runtime/compiler/date.ts +++ b/test/runtime/compiler/date.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Date', () => { diff --git a/test/runtime/compiler/enum.ts b/test/runtime/compiler/enum.ts index 679e4ac..96da329 100644 --- a/test/runtime/compiler/enum.ts +++ b/test/runtime/compiler/enum.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Enum', () => { diff --git a/test/runtime/compiler/function.ts b/test/runtime/compiler/function.ts index 29a604b..c7e54a0 100644 --- a/test/runtime/compiler/function.ts +++ b/test/runtime/compiler/function.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Function', () => { diff --git a/test/runtime/compiler/integer.ts b/test/runtime/compiler/integer.ts index 5172044..9b64dd9 100644 --- a/test/runtime/compiler/integer.ts +++ b/test/runtime/compiler/integer.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Integer', () => { diff --git a/test/runtime/compiler/intersect.ts b/test/runtime/compiler/intersect.ts index 652e3be..a90e5e1 100644 --- a/test/runtime/compiler/intersect.ts +++ b/test/runtime/compiler/intersect.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Intersect', () => { diff --git a/test/runtime/compiler/iterator.ts b/test/runtime/compiler/iterator.ts index e5c5e0b..55cf735 100644 --- a/test/runtime/compiler/iterator.ts +++ b/test/runtime/compiler/iterator.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Iterator', () => { diff --git a/test/runtime/compiler/keyof.ts b/test/runtime/compiler/keyof.ts index a1d5cc4..01d8fb5 100644 --- a/test/runtime/compiler/keyof.ts +++ b/test/runtime/compiler/keyof.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/KeyOf', () => { diff --git a/test/runtime/compiler/kind.ts b/test/runtime/compiler/kind.ts index 1f0274b..c06562c 100644 --- a/test/runtime/compiler/kind.ts +++ b/test/runtime/compiler/kind.ts @@ -1,5 +1,5 @@ -import { TypeRegistry, Type, Kind, TSchema } from '@sinclair/typebox' -import { TypeCompiler } from '@sinclair/typebox/compiler' +import { TypeRegistry, Type, Kind, TSchema } from '@alkdev/typebox' +import { TypeCompiler } from '@alkdev/typebox/compiler' import { Ok, Fail } from './validate' import { Assert } from '../assert' diff --git a/test/runtime/compiler/literal.ts b/test/runtime/compiler/literal.ts index 5cd3e28..84420c0 100644 --- a/test/runtime/compiler/literal.ts +++ b/test/runtime/compiler/literal.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Literal', () => { diff --git a/test/runtime/compiler/module.ts b/test/runtime/compiler/module.ts index 2121a9d..250132f 100644 --- a/test/runtime/compiler/module.ts +++ b/test/runtime/compiler/module.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Module', () => { diff --git a/test/runtime/compiler/never.ts b/test/runtime/compiler/never.ts index e1a8c3a..653b178 100644 --- a/test/runtime/compiler/never.ts +++ b/test/runtime/compiler/never.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Fail } from './validate' describe('compiler/Never', () => { diff --git a/test/runtime/compiler/not.ts b/test/runtime/compiler/not.ts index 3621e91..a92cd49 100644 --- a/test/runtime/compiler/not.ts +++ b/test/runtime/compiler/not.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Not', () => { diff --git a/test/runtime/compiler/null.ts b/test/runtime/compiler/null.ts index b23335f..1f54b75 100644 --- a/test/runtime/compiler/null.ts +++ b/test/runtime/compiler/null.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Null', () => { diff --git a/test/runtime/compiler/number.ts b/test/runtime/compiler/number.ts index 7a97df5..fe3c72e 100644 --- a/test/runtime/compiler/number.ts +++ b/test/runtime/compiler/number.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Number', () => { diff --git a/test/runtime/compiler/object.ts b/test/runtime/compiler/object.ts index 10c154b..be22456 100644 --- a/test/runtime/compiler/object.ts +++ b/test/runtime/compiler/object.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Object', () => { diff --git a/test/runtime/compiler/omit.ts b/test/runtime/compiler/omit.ts index 2adf42e..744e5f2 100644 --- a/test/runtime/compiler/omit.ts +++ b/test/runtime/compiler/omit.ts @@ -1,4 +1,4 @@ -import { Type, Kind } from '@sinclair/typebox' +import { Type, Kind } from '@alkdev/typebox' import { Ok, Fail } from './validate' import { deepEqual, strictEqual } from 'assert' diff --git a/test/runtime/compiler/optional.ts b/test/runtime/compiler/optional.ts index 5c24e17..cb89bfd 100644 --- a/test/runtime/compiler/optional.ts +++ b/test/runtime/compiler/optional.ts @@ -1,5 +1,5 @@ import { strictEqual } from 'assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok } from './validate' describe('compiler/Optional', () => { diff --git a/test/runtime/compiler/partial.ts b/test/runtime/compiler/partial.ts index 74b71aa..c5f8a42 100644 --- a/test/runtime/compiler/partial.ts +++ b/test/runtime/compiler/partial.ts @@ -1,5 +1,5 @@ -import { TypeSystem } from '@sinclair/typebox/system' -import { Type, OptionalKind, ReadonlyKind } from '@sinclair/typebox' +import { TypeSystem } from '@alkdev/typebox/system' +import { Type, OptionalKind, ReadonlyKind } from '@alkdev/typebox' import { Ok, Fail } from './validate' import { strictEqual } from 'assert' diff --git a/test/runtime/compiler/pick.ts b/test/runtime/compiler/pick.ts index 59915e2..2892994 100644 --- a/test/runtime/compiler/pick.ts +++ b/test/runtime/compiler/pick.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' import { strictEqual } from 'assert' diff --git a/test/runtime/compiler/readonly-optional.ts b/test/runtime/compiler/readonly-optional.ts index e4aeffc..9561a64 100644 --- a/test/runtime/compiler/readonly-optional.ts +++ b/test/runtime/compiler/readonly-optional.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' import { strictEqual } from 'assert' diff --git a/test/runtime/compiler/readonly.ts b/test/runtime/compiler/readonly.ts index b852feb..76325f9 100644 --- a/test/runtime/compiler/readonly.ts +++ b/test/runtime/compiler/readonly.ts @@ -1,5 +1,5 @@ import { deepStrictEqual, strictEqual } from 'assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Readonly', () => { diff --git a/test/runtime/compiler/record.ts b/test/runtime/compiler/record.ts index af4417b..a5a03ba 100644 --- a/test/runtime/compiler/record.ts +++ b/test/runtime/compiler/record.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Record', () => { diff --git a/test/runtime/compiler/recursive.ts b/test/runtime/compiler/recursive.ts index 0b537ec..64d3a44 100644 --- a/test/runtime/compiler/recursive.ts +++ b/test/runtime/compiler/recursive.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../assert/index' import { Ok, Fail } from './validate' diff --git a/test/runtime/compiler/ref.ts b/test/runtime/compiler/ref.ts index 75470f8..f76446f 100644 --- a/test/runtime/compiler/ref.ts +++ b/test/runtime/compiler/ref.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' import { Assert } from '../assert/index' diff --git a/test/runtime/compiler/regexp.ts b/test/runtime/compiler/regexp.ts index d4dda52..b7c683c 100644 --- a/test/runtime/compiler/regexp.ts +++ b/test/runtime/compiler/regexp.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/RegExp', () => { diff --git a/test/runtime/compiler/required.ts b/test/runtime/compiler/required.ts index c94daf9..35f32a6 100644 --- a/test/runtime/compiler/required.ts +++ b/test/runtime/compiler/required.ts @@ -1,4 +1,4 @@ -import { Type, ReadonlyKind, OptionalKind } from '@sinclair/typebox' +import { Type, ReadonlyKind, OptionalKind } from '@alkdev/typebox' import { Ok, Fail } from './validate' import { strictEqual } from 'assert' diff --git a/test/runtime/compiler/string-pattern.ts b/test/runtime/compiler/string-pattern.ts index 6ee16cb..d76a150 100644 --- a/test/runtime/compiler/string-pattern.ts +++ b/test/runtime/compiler/string-pattern.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/StringPattern', () => { diff --git a/test/runtime/compiler/string.ts b/test/runtime/compiler/string.ts index 2086bc3..87f0bcb 100644 --- a/test/runtime/compiler/string.ts +++ b/test/runtime/compiler/string.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/String', () => { diff --git a/test/runtime/compiler/symbol.ts b/test/runtime/compiler/symbol.ts index a350526..d02def1 100644 --- a/test/runtime/compiler/symbol.ts +++ b/test/runtime/compiler/symbol.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Symbol', () => { diff --git a/test/runtime/compiler/template-literal.ts b/test/runtime/compiler/template-literal.ts index 7c0589c..97bfe53 100644 --- a/test/runtime/compiler/template-literal.ts +++ b/test/runtime/compiler/template-literal.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/TemplateLiteral', () => { diff --git a/test/runtime/compiler/tuple.ts b/test/runtime/compiler/tuple.ts index 9271681..f5dc5b4 100644 --- a/test/runtime/compiler/tuple.ts +++ b/test/runtime/compiler/tuple.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Tuple', () => { diff --git a/test/runtime/compiler/uint8array.ts b/test/runtime/compiler/uint8array.ts index 3064987..d944bca 100644 --- a/test/runtime/compiler/uint8array.ts +++ b/test/runtime/compiler/uint8array.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Uint8Array', () => { diff --git a/test/runtime/compiler/unicode.ts b/test/runtime/compiler/unicode.ts index f5ef171..3fdadfb 100644 --- a/test/runtime/compiler/unicode.ts +++ b/test/runtime/compiler/unicode.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok } from './validate' describe('compiler/Unicode', () => { diff --git a/test/runtime/compiler/union.ts b/test/runtime/compiler/union.ts index 7cd7106..ad08114 100644 --- a/test/runtime/compiler/union.ts +++ b/test/runtime/compiler/union.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Union', () => { diff --git a/test/runtime/compiler/unknown.ts b/test/runtime/compiler/unknown.ts index 124a9f4..8ddd653 100644 --- a/test/runtime/compiler/unknown.ts +++ b/test/runtime/compiler/unknown.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok } from './validate' describe('compiler/Unknown', () => { diff --git a/test/runtime/compiler/validate.ts b/test/runtime/compiler/validate.ts index 508d497..31b1421 100644 --- a/test/runtime/compiler/validate.ts +++ b/test/runtime/compiler/validate.ts @@ -1,6 +1,6 @@ -import { TypeCompiler } from '@sinclair/typebox/compiler' -import { Value } from '@sinclair/typebox/value' -import { TSchema, FormatRegistry } from '@sinclair/typebox' +import { TypeCompiler } from '@alkdev/typebox/compiler' +import { Value } from '@alkdev/typebox/value' +import { TSchema, FormatRegistry } from '@alkdev/typebox' // ------------------------------------------------------------------------- // Test Formats: https://github.com/ajv-validator/ajv-formats/blob/master/src/formats.ts diff --git a/test/runtime/compiler/void.ts b/test/runtime/compiler/void.ts index 4a20343..4c1cf76 100644 --- a/test/runtime/compiler/void.ts +++ b/test/runtime/compiler/void.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Ok, Fail } from './validate' describe('compiler/Void', () => { diff --git a/test/runtime/errors/iterator/iterator.ts b/test/runtime/errors/iterator/iterator.ts index d32cd12..7a841db 100644 --- a/test/runtime/errors/iterator/iterator.ts +++ b/test/runtime/errors/iterator/iterator.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { Errors } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { Errors } from '@alkdev/typebox/errors' import { Assert } from '../../assert' describe('errors/ValueErrorIterator', () => { diff --git a/test/runtime/errors/types/array-contains.ts b/test/runtime/errors/types/array-contains.ts index fe73e01..5c223e8 100644 --- a/test/runtime/errors/types/array-contains.ts +++ b/test/runtime/errors/types/array-contains.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/array-max-contains.ts b/test/runtime/errors/types/array-max-contains.ts index df55b1e..6fe70bc 100644 --- a/test/runtime/errors/types/array-max-contains.ts +++ b/test/runtime/errors/types/array-max-contains.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/array-max-items.ts b/test/runtime/errors/types/array-max-items.ts index b24fdc8..03b38af 100644 --- a/test/runtime/errors/types/array-max-items.ts +++ b/test/runtime/errors/types/array-max-items.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/array-min-contains.ts b/test/runtime/errors/types/array-min-contains.ts index a824068..073451b 100644 --- a/test/runtime/errors/types/array-min-contains.ts +++ b/test/runtime/errors/types/array-min-contains.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/array-min-items.ts b/test/runtime/errors/types/array-min-items.ts index fc1770a..5c3b7f5 100644 --- a/test/runtime/errors/types/array-min-items.ts +++ b/test/runtime/errors/types/array-min-items.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/array-unique-items.ts b/test/runtime/errors/types/array-unique-items.ts index d6f502c..280f114 100644 --- a/test/runtime/errors/types/array-unique-items.ts +++ b/test/runtime/errors/types/array-unique-items.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/array.ts b/test/runtime/errors/types/array.ts index eb6904d..914f9f3 100644 --- a/test/runtime/errors/types/array.ts +++ b/test/runtime/errors/types/array.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/async-iterator.ts b/test/runtime/errors/types/async-iterator.ts index 55f6f17..98ea992 100644 --- a/test/runtime/errors/types/async-iterator.ts +++ b/test/runtime/errors/types/async-iterator.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/bigint-exclusive-maximum.ts b/test/runtime/errors/types/bigint-exclusive-maximum.ts index 9acf831..fbf02cd 100644 --- a/test/runtime/errors/types/bigint-exclusive-maximum.ts +++ b/test/runtime/errors/types/bigint-exclusive-maximum.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/bigint-exclusive-minimum.ts b/test/runtime/errors/types/bigint-exclusive-minimum.ts index 80a19f4..4bac111 100644 --- a/test/runtime/errors/types/bigint-exclusive-minimum.ts +++ b/test/runtime/errors/types/bigint-exclusive-minimum.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/bigint-maximum.ts b/test/runtime/errors/types/bigint-maximum.ts index fe5f209..ab57979 100644 --- a/test/runtime/errors/types/bigint-maximum.ts +++ b/test/runtime/errors/types/bigint-maximum.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/bigint-minimum.ts b/test/runtime/errors/types/bigint-minimum.ts index 1f21773..5354777 100644 --- a/test/runtime/errors/types/bigint-minimum.ts +++ b/test/runtime/errors/types/bigint-minimum.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/bigint-multiple-of.ts b/test/runtime/errors/types/bigint-multiple-of.ts index f7fe277..211b1eb 100644 --- a/test/runtime/errors/types/bigint-multiple-of.ts +++ b/test/runtime/errors/types/bigint-multiple-of.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/bigint.ts b/test/runtime/errors/types/bigint.ts index 4f7ed05..01f5fcb 100644 --- a/test/runtime/errors/types/bigint.ts +++ b/test/runtime/errors/types/bigint.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/boolean.ts b/test/runtime/errors/types/boolean.ts index 5ed8edc..198dd7d 100644 --- a/test/runtime/errors/types/boolean.ts +++ b/test/runtime/errors/types/boolean.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/date-exclusive-maximum-timestamp.ts b/test/runtime/errors/types/date-exclusive-maximum-timestamp.ts index ab1c291..2f3cdbe 100644 --- a/test/runtime/errors/types/date-exclusive-maximum-timestamp.ts +++ b/test/runtime/errors/types/date-exclusive-maximum-timestamp.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/date-exclusive-minimum-timestamp.ts b/test/runtime/errors/types/date-exclusive-minimum-timestamp.ts index a9f439e..cd68eb5 100644 --- a/test/runtime/errors/types/date-exclusive-minimum-timestamp.ts +++ b/test/runtime/errors/types/date-exclusive-minimum-timestamp.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/date-maximum-timestamp.ts b/test/runtime/errors/types/date-maximum-timestamp.ts index 11e8805..9ade292 100644 --- a/test/runtime/errors/types/date-maximum-timestamp.ts +++ b/test/runtime/errors/types/date-maximum-timestamp.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/date-minimum-timestamp.ts b/test/runtime/errors/types/date-minimum-timestamp.ts index 311fc47..39dbbd1 100644 --- a/test/runtime/errors/types/date-minimum-timestamp.ts +++ b/test/runtime/errors/types/date-minimum-timestamp.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/date-multiple-of-timestamp.ts b/test/runtime/errors/types/date-multiple-of-timestamp.ts index 8c3404a..b6ad375 100644 --- a/test/runtime/errors/types/date-multiple-of-timestamp.ts +++ b/test/runtime/errors/types/date-multiple-of-timestamp.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/date.ts b/test/runtime/errors/types/date.ts index 01a553e..a81fb74 100644 --- a/test/runtime/errors/types/date.ts +++ b/test/runtime/errors/types/date.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/function.ts b/test/runtime/errors/types/function.ts index 4fbb628..0b75ed3 100644 --- a/test/runtime/errors/types/function.ts +++ b/test/runtime/errors/types/function.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/integer-exclusive-maximum.ts b/test/runtime/errors/types/integer-exclusive-maximum.ts index 0667c10..210fd08 100644 --- a/test/runtime/errors/types/integer-exclusive-maximum.ts +++ b/test/runtime/errors/types/integer-exclusive-maximum.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/integer-exclusive-minimum.ts b/test/runtime/errors/types/integer-exclusive-minimum.ts index e59556a..897c2bf 100644 --- a/test/runtime/errors/types/integer-exclusive-minimum.ts +++ b/test/runtime/errors/types/integer-exclusive-minimum.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/integer-maximum.ts b/test/runtime/errors/types/integer-maximum.ts index fbe0285..874e814 100644 --- a/test/runtime/errors/types/integer-maximum.ts +++ b/test/runtime/errors/types/integer-maximum.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/integer-minimum.ts b/test/runtime/errors/types/integer-minimum.ts index f7590e1..11468b1 100644 --- a/test/runtime/errors/types/integer-minimum.ts +++ b/test/runtime/errors/types/integer-minimum.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/integer-multiple-of.ts b/test/runtime/errors/types/integer-multiple-of.ts index 38a0e14..276c734 100644 --- a/test/runtime/errors/types/integer-multiple-of.ts +++ b/test/runtime/errors/types/integer-multiple-of.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/integer.ts b/test/runtime/errors/types/integer.ts index 5f671ed..b622532 100644 --- a/test/runtime/errors/types/integer.ts +++ b/test/runtime/errors/types/integer.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/intersect-unevaluated-properties.ts b/test/runtime/errors/types/intersect-unevaluated-properties.ts index 58624b2..27a416e 100644 --- a/test/runtime/errors/types/intersect-unevaluated-properties.ts +++ b/test/runtime/errors/types/intersect-unevaluated-properties.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/intersect.ts b/test/runtime/errors/types/intersect.ts index 5e1f8f1..a587b41 100644 --- a/test/runtime/errors/types/intersect.ts +++ b/test/runtime/errors/types/intersect.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/iterator.ts b/test/runtime/errors/types/iterator.ts index f1ceee2..93e3b19 100644 --- a/test/runtime/errors/types/iterator.ts +++ b/test/runtime/errors/types/iterator.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/kind.ts b/test/runtime/errors/types/kind.ts index c886535..0279e2a 100644 --- a/test/runtime/errors/types/kind.ts +++ b/test/runtime/errors/types/kind.ts @@ -1,5 +1,5 @@ -import { TypeRegistry, Kind, TSchema } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { TypeRegistry, Kind, TSchema } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/literal.ts b/test/runtime/errors/types/literal.ts index 2fe3511..d49c337 100644 --- a/test/runtime/errors/types/literal.ts +++ b/test/runtime/errors/types/literal.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/never.ts b/test/runtime/errors/types/never.ts index e85e808..8867bf3 100644 --- a/test/runtime/errors/types/never.ts +++ b/test/runtime/errors/types/never.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/not.ts b/test/runtime/errors/types/not.ts index 01d3605..09bb0ac 100644 --- a/test/runtime/errors/types/not.ts +++ b/test/runtime/errors/types/not.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/null.ts b/test/runtime/errors/types/null.ts index 0b897dc..c97da41 100644 --- a/test/runtime/errors/types/null.ts +++ b/test/runtime/errors/types/null.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/number-exclusive-maximum.ts b/test/runtime/errors/types/number-exclusive-maximum.ts index b80ce94..2221ff8 100644 --- a/test/runtime/errors/types/number-exclusive-maximum.ts +++ b/test/runtime/errors/types/number-exclusive-maximum.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/number-exclusive-minimum.ts b/test/runtime/errors/types/number-exclusive-minimum.ts index c474a8d..2561474 100644 --- a/test/runtime/errors/types/number-exclusive-minimum.ts +++ b/test/runtime/errors/types/number-exclusive-minimum.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/number-maximum.ts b/test/runtime/errors/types/number-maximum.ts index fa4a3ec..e497f2f 100644 --- a/test/runtime/errors/types/number-maximum.ts +++ b/test/runtime/errors/types/number-maximum.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/number-minimum.ts b/test/runtime/errors/types/number-minimum.ts index 8d8f4bf..55e5aa3 100644 --- a/test/runtime/errors/types/number-minimum.ts +++ b/test/runtime/errors/types/number-minimum.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/number-multiple-of.ts b/test/runtime/errors/types/number-multiple-of.ts index 921a236..e8fad0f 100644 --- a/test/runtime/errors/types/number-multiple-of.ts +++ b/test/runtime/errors/types/number-multiple-of.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/number.ts b/test/runtime/errors/types/number.ts index 0055c4d..678a744 100644 --- a/test/runtime/errors/types/number.ts +++ b/test/runtime/errors/types/number.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/object-additional-properties.ts b/test/runtime/errors/types/object-additional-properties.ts index 9cad1bf..3b4b6fa 100644 --- a/test/runtime/errors/types/object-additional-properties.ts +++ b/test/runtime/errors/types/object-additional-properties.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/object-max-properties.ts b/test/runtime/errors/types/object-max-properties.ts index ee042e3..fc3d2ca 100644 --- a/test/runtime/errors/types/object-max-properties.ts +++ b/test/runtime/errors/types/object-max-properties.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/object-min-properties.ts b/test/runtime/errors/types/object-min-properties.ts index 428a8b7..187d216 100644 --- a/test/runtime/errors/types/object-min-properties.ts +++ b/test/runtime/errors/types/object-min-properties.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/object-pointer-property.ts b/test/runtime/errors/types/object-pointer-property.ts index ccf0458..8cde857 100644 --- a/test/runtime/errors/types/object-pointer-property.ts +++ b/test/runtime/errors/types/object-pointer-property.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/object-required-property.ts b/test/runtime/errors/types/object-required-property.ts index 4019885..626f740 100644 --- a/test/runtime/errors/types/object-required-property.ts +++ b/test/runtime/errors/types/object-required-property.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/object.ts b/test/runtime/errors/types/object.ts index 3e9b86d..8740a8c 100644 --- a/test/runtime/errors/types/object.ts +++ b/test/runtime/errors/types/object.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/promise.ts b/test/runtime/errors/types/promise.ts index 81dbe42..ec088f3 100644 --- a/test/runtime/errors/types/promise.ts +++ b/test/runtime/errors/types/promise.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/record-pointer-property.ts b/test/runtime/errors/types/record-pointer-property.ts index a2dbd34..a78e748 100644 --- a/test/runtime/errors/types/record-pointer-property.ts +++ b/test/runtime/errors/types/record-pointer-property.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/regexp-max-length.ts b/test/runtime/errors/types/regexp-max-length.ts index 22f8fd7..13acad0 100644 --- a/test/runtime/errors/types/regexp-max-length.ts +++ b/test/runtime/errors/types/regexp-max-length.ts @@ -1,5 +1,5 @@ -import { Type, FormatRegistry } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type, FormatRegistry } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/regexp-min-length.ts b/test/runtime/errors/types/regexp-min-length.ts index 3bd6227..b194b72 100644 --- a/test/runtime/errors/types/regexp-min-length.ts +++ b/test/runtime/errors/types/regexp-min-length.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/regexp.ts b/test/runtime/errors/types/regexp.ts index e6f1c69..a086b36 100644 --- a/test/runtime/errors/types/regexp.ts +++ b/test/runtime/errors/types/regexp.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/resolve.ts b/test/runtime/errors/types/resolve.ts index e636137..820dd8a 100644 --- a/test/runtime/errors/types/resolve.ts +++ b/test/runtime/errors/types/resolve.ts @@ -1,5 +1,5 @@ -import { Errors } from '@sinclair/typebox/errors' -import { TSchema } from '@sinclair/typebox' +import { Errors } from '@alkdev/typebox/errors' +import { TSchema } from '@alkdev/typebox' /** Resolves errors */ export function Resolve(schema: T, value: unknown) { diff --git a/test/runtime/errors/types/string-format-unknown.ts b/test/runtime/errors/types/string-format-unknown.ts index b40e962..27a277b 100644 --- a/test/runtime/errors/types/string-format-unknown.ts +++ b/test/runtime/errors/types/string-format-unknown.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/string-format.ts b/test/runtime/errors/types/string-format.ts index d4f0345..e60cddc 100644 --- a/test/runtime/errors/types/string-format.ts +++ b/test/runtime/errors/types/string-format.ts @@ -1,5 +1,5 @@ -import { Type, FormatRegistry } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type, FormatRegistry } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/string-max-length.ts b/test/runtime/errors/types/string-max-length.ts index 973ab26..19c3100 100644 --- a/test/runtime/errors/types/string-max-length.ts +++ b/test/runtime/errors/types/string-max-length.ts @@ -1,5 +1,5 @@ -import { Type, FormatRegistry } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type, FormatRegistry } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/string-min-length.ts b/test/runtime/errors/types/string-min-length.ts index aa96f92..74657f5 100644 --- a/test/runtime/errors/types/string-min-length.ts +++ b/test/runtime/errors/types/string-min-length.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/string-pattern.ts b/test/runtime/errors/types/string-pattern.ts index 07c2f06..f11d09d 100644 --- a/test/runtime/errors/types/string-pattern.ts +++ b/test/runtime/errors/types/string-pattern.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/string.ts b/test/runtime/errors/types/string.ts index 79003cc..e6e4a65 100644 --- a/test/runtime/errors/types/string.ts +++ b/test/runtime/errors/types/string.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/symbol.ts b/test/runtime/errors/types/symbol.ts index ced5c21..0e6638b 100644 --- a/test/runtime/errors/types/symbol.ts +++ b/test/runtime/errors/types/symbol.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/tuple-length.ts b/test/runtime/errors/types/tuple-length.ts index e8265e6..4ce215a 100644 --- a/test/runtime/errors/types/tuple-length.ts +++ b/test/runtime/errors/types/tuple-length.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/tuple.ts b/test/runtime/errors/types/tuple.ts index acfa150..23ecfb9 100644 --- a/test/runtime/errors/types/tuple.ts +++ b/test/runtime/errors/types/tuple.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/uint8array-max-byte-length.ts b/test/runtime/errors/types/uint8array-max-byte-length.ts index 4e530e1..5a5b703 100644 --- a/test/runtime/errors/types/uint8array-max-byte-length.ts +++ b/test/runtime/errors/types/uint8array-max-byte-length.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/uint8array-min-byte-length.ts b/test/runtime/errors/types/uint8array-min-byte-length.ts index 0ecc7c1..f0d3074 100644 --- a/test/runtime/errors/types/uint8array-min-byte-length.ts +++ b/test/runtime/errors/types/uint8array-min-byte-length.ts @@ -1,5 +1,5 @@ -import { Type, FormatRegistry } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type, FormatRegistry } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/uint8array.ts b/test/runtime/errors/types/uint8array.ts index 51b99db..68c30ce 100644 --- a/test/runtime/errors/types/uint8array.ts +++ b/test/runtime/errors/types/uint8array.ts @@ -1,5 +1,5 @@ -import { Type, FormatRegistry } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type, FormatRegistry } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/undefined.ts b/test/runtime/errors/types/undefined.ts index ac3be5d..a285368 100644 --- a/test/runtime/errors/types/undefined.ts +++ b/test/runtime/errors/types/undefined.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/union.ts b/test/runtime/errors/types/union.ts index 70d1389..8691818 100644 --- a/test/runtime/errors/types/union.ts +++ b/test/runtime/errors/types/union.ts @@ -1,5 +1,5 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorIterator, ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorIterator, ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' diff --git a/test/runtime/errors/types/void.ts b/test/runtime/errors/types/void.ts index cd5132f..b72e1e8 100644 --- a/test/runtime/errors/types/void.ts +++ b/test/runtime/errors/types/void.ts @@ -1,8 +1,8 @@ -import { Type } from '@sinclair/typebox' -import { ValueErrorType } from '@sinclair/typebox/errors' +import { Type } from '@alkdev/typebox' +import { ValueErrorType } from '@alkdev/typebox/errors' import { Resolve } from './resolve' import { Assert } from '../../assert' -import { TypeSystemPolicy } from '@sinclair/typebox/system' +import { TypeSystemPolicy } from '@alkdev/typebox/system' describe('errors/type/Void', () => { const T = Type.Void() diff --git a/test/runtime/index.ts b/test/runtime/index.ts index ec19724..6b550a0 100644 --- a/test/runtime/index.ts +++ b/test/runtime/index.ts @@ -1,4 +1,4 @@ -import { TypeSystemPolicy } from '@sinclair/typebox/system' +import { TypeSystemPolicy } from '@alkdev/typebox/system' // ------------------------------------------------------------------ // InstanceMode: Freeze (Detect Unintended Side Effects) diff --git a/test/runtime/syntax/syntax.ts b/test/runtime/syntax/syntax.ts index 148119a..c01a33a 100644 --- a/test/runtime/syntax/syntax.ts +++ b/test/runtime/syntax/syntax.ts @@ -1,6 +1,6 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' -import { Syntax } from '@sinclair/typebox/syntax' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' +import { Syntax } from '@alkdev/typebox/syntax' import { Assert } from '../assert/index' // prettier-ignore diff --git a/test/runtime/system/policy/allow-array-object.ts b/test/runtime/system/policy/allow-array-object.ts index 7e23d54..d6e1181 100644 --- a/test/runtime/system/policy/allow-array-object.ts +++ b/test/runtime/system/policy/allow-array-object.ts @@ -1,6 +1,6 @@ import { Ok, Fail } from '../../compiler/validate' -import { TypeSystemPolicy } from '@sinclair/typebox/system' -import { Type } from '@sinclair/typebox' +import { TypeSystemPolicy } from '@alkdev/typebox/system' +import { Type } from '@alkdev/typebox' describe('system/TypeSystemPolicy/AllowArrayObject', () => { beforeEach(() => { diff --git a/test/runtime/system/policy/allow-nan.ts b/test/runtime/system/policy/allow-nan.ts index 54ec151..43fa759 100644 --- a/test/runtime/system/policy/allow-nan.ts +++ b/test/runtime/system/policy/allow-nan.ts @@ -1,6 +1,6 @@ import { Ok, Fail } from '../../compiler/validate' -import { TypeSystemPolicy } from '@sinclair/typebox/system' -import { Type } from '@sinclair/typebox' +import { TypeSystemPolicy } from '@alkdev/typebox/system' +import { Type } from '@alkdev/typebox' describe('system/TypeSystemPolicy/AllowNaN', () => { beforeEach(() => { diff --git a/test/runtime/system/policy/allow-null-void.ts b/test/runtime/system/policy/allow-null-void.ts index 5903890..71e9f5b 100644 --- a/test/runtime/system/policy/allow-null-void.ts +++ b/test/runtime/system/policy/allow-null-void.ts @@ -1,6 +1,6 @@ import { Ok } from '../../compiler/validate' -import { TypeSystemPolicy } from '@sinclair/typebox/system' -import { Type } from '@sinclair/typebox' +import { TypeSystemPolicy } from '@alkdev/typebox/system' +import { Type } from '@alkdev/typebox' describe('system/TypeSystemPolicy/AllowNullVoid', () => { beforeEach(() => { diff --git a/test/runtime/system/policy/exact-optional-property-types.ts b/test/runtime/system/policy/exact-optional-property-types.ts index 6c6e63b..9e24827 100644 --- a/test/runtime/system/policy/exact-optional-property-types.ts +++ b/test/runtime/system/policy/exact-optional-property-types.ts @@ -1,6 +1,6 @@ import { Ok, Fail } from '../../compiler/validate' -import { TypeSystemPolicy } from '@sinclair/typebox/system' -import { Type } from '@sinclair/typebox' +import { TypeSystemPolicy } from '@alkdev/typebox/system' +import { Type } from '@alkdev/typebox' describe('system/TypeSystemPolicy/ExactOptionalPropertyTypes', () => { beforeEach(() => { diff --git a/test/runtime/system/policy/instance-mode.ts b/test/runtime/system/policy/instance-mode.ts index 1e400c2..332063c 100644 --- a/test/runtime/system/policy/instance-mode.ts +++ b/test/runtime/system/policy/instance-mode.ts @@ -1,5 +1,5 @@ -import { TypeSystemPolicy } from '@sinclair/typebox/system' -import { Type } from '@sinclair/typebox' +import { TypeSystemPolicy } from '@alkdev/typebox/system' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('system/TypeSystemPolicy/InstanceMode', () => { diff --git a/test/runtime/system/type/format.ts b/test/runtime/system/type/format.ts index bac7c91..4506b98 100644 --- a/test/runtime/system/type/format.ts +++ b/test/runtime/system/type/format.ts @@ -1,7 +1,7 @@ import { Ok, Fail } from '../../compiler/validate' import { Assert } from '../../assert/index' -import { TypeSystem } from '@sinclair/typebox/system' -import { Type, FormatRegistry } from '@sinclair/typebox' +import { TypeSystem } from '@alkdev/typebox/system' +import { Type, FormatRegistry } from '@alkdev/typebox' describe('system/TypeSystem/Format', () => { it('Should create and validate a format', () => { diff --git a/test/runtime/system/type/type.ts b/test/runtime/system/type/type.ts index 86288f5..546c2cd 100644 --- a/test/runtime/system/type/type.ts +++ b/test/runtime/system/type/type.ts @@ -1,6 +1,6 @@ import { Ok, Fail } from '../../compiler/validate' -import { TypeSystem } from '@sinclair/typebox/system' -import { TypeRegistry } from '@sinclair/typebox' +import { TypeSystem } from '@alkdev/typebox/system' +import { TypeRegistry } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('system/TypeSystem/Type', () => { diff --git a/test/runtime/type/clone/clone.ts b/test/runtime/type/clone/clone.ts index 3656800..d5fe98d 100644 --- a/test/runtime/type/clone/clone.ts +++ b/test/runtime/type/clone/clone.ts @@ -2,7 +2,7 @@ // $id deletion was omitted from 0.26.0 to reduce complexity overhead. // -------------------------------------------------------------------- -// import { Type } from '@sinclair/typebox' +// import { Type } from '@alkdev/typebox' // import { Assert } from '../../assert' // describe('type/Clone', () => { diff --git a/test/runtime/type/extends/any.ts b/test/runtime/type/extends/any.ts index 6373c9a..0deab37 100644 --- a/test/runtime/type/extends/any.ts +++ b/test/runtime/type/extends/any.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/Any', () => { diff --git a/test/runtime/type/extends/array.ts b/test/runtime/type/extends/array.ts index 2e468c8..f386719 100644 --- a/test/runtime/type/extends/array.ts +++ b/test/runtime/type/extends/array.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/Array', () => { diff --git a/test/runtime/type/extends/async-iterator.ts b/test/runtime/type/extends/async-iterator.ts index 9cc5392..0b52c0a 100644 --- a/test/runtime/type/extends/async-iterator.ts +++ b/test/runtime/type/extends/async-iterator.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/AsyncIterator', () => { diff --git a/test/runtime/type/extends/bigint.ts b/test/runtime/type/extends/bigint.ts index f965eab..1f3df2e 100644 --- a/test/runtime/type/extends/bigint.ts +++ b/test/runtime/type/extends/bigint.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/BigInt', () => { diff --git a/test/runtime/type/extends/boolean.ts b/test/runtime/type/extends/boolean.ts index 6e336f3..2f6587a 100644 --- a/test/runtime/type/extends/boolean.ts +++ b/test/runtime/type/extends/boolean.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/Boolean', () => { diff --git a/test/runtime/type/extends/constructor.ts b/test/runtime/type/extends/constructor.ts index a590c84..55d6c17 100644 --- a/test/runtime/type/extends/constructor.ts +++ b/test/runtime/type/extends/constructor.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/Constructor', () => { diff --git a/test/runtime/type/extends/date.ts b/test/runtime/type/extends/date.ts index 2bcfa88..0688872 100644 --- a/test/runtime/type/extends/date.ts +++ b/test/runtime/type/extends/date.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/Date', () => { diff --git a/test/runtime/type/extends/function.ts b/test/runtime/type/extends/function.ts index e889555..4feb391 100644 --- a/test/runtime/type/extends/function.ts +++ b/test/runtime/type/extends/function.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/Function', () => { diff --git a/test/runtime/type/extends/integer.ts b/test/runtime/type/extends/integer.ts index 6abd575..2f60a56 100644 --- a/test/runtime/type/extends/integer.ts +++ b/test/runtime/type/extends/integer.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/Integer', () => { diff --git a/test/runtime/type/extends/iterator.ts b/test/runtime/type/extends/iterator.ts index d685dfa..1aac307 100644 --- a/test/runtime/type/extends/iterator.ts +++ b/test/runtime/type/extends/iterator.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/Iterator', () => { diff --git a/test/runtime/type/extends/literal.ts b/test/runtime/type/extends/literal.ts index ca2c952..ec618d5 100644 --- a/test/runtime/type/extends/literal.ts +++ b/test/runtime/type/extends/literal.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/Literal', () => { diff --git a/test/runtime/type/extends/not.ts b/test/runtime/type/extends/not.ts index fd3a97a..fd4a324 100644 --- a/test/runtime/type/extends/not.ts +++ b/test/runtime/type/extends/not.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' // --------------------------------------------------------------------------- diff --git a/test/runtime/type/extends/null.ts b/test/runtime/type/extends/null.ts index 157d7d2..47ff146 100644 --- a/test/runtime/type/extends/null.ts +++ b/test/runtime/type/extends/null.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/Null', () => { diff --git a/test/runtime/type/extends/number.ts b/test/runtime/type/extends/number.ts index ce9c418..9871a3c 100644 --- a/test/runtime/type/extends/number.ts +++ b/test/runtime/type/extends/number.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/Number', () => { diff --git a/test/runtime/type/extends/object.ts b/test/runtime/type/extends/object.ts index 76e4058..48d1a2c 100644 --- a/test/runtime/type/extends/object.ts +++ b/test/runtime/type/extends/object.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/Object', () => { diff --git a/test/runtime/type/extends/promise.ts b/test/runtime/type/extends/promise.ts index 2313c87..ce5c67c 100644 --- a/test/runtime/type/extends/promise.ts +++ b/test/runtime/type/extends/promise.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/Promise', () => { diff --git a/test/runtime/type/extends/record.ts b/test/runtime/type/extends/record.ts index 905a96f..3bc2fa3 100644 --- a/test/runtime/type/extends/record.ts +++ b/test/runtime/type/extends/record.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/Record', () => { diff --git a/test/runtime/type/extends/regexp.ts b/test/runtime/type/extends/regexp.ts index 2298acd..9496613 100644 --- a/test/runtime/type/extends/regexp.ts +++ b/test/runtime/type/extends/regexp.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' // ------------------------------------------------------------------ diff --git a/test/runtime/type/extends/string.ts b/test/runtime/type/extends/string.ts index cdb3e21..b12d971 100644 --- a/test/runtime/type/extends/string.ts +++ b/test/runtime/type/extends/string.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/String', () => { diff --git a/test/runtime/type/extends/symbol.ts b/test/runtime/type/extends/symbol.ts index 9412f4f..35c95ff 100644 --- a/test/runtime/type/extends/symbol.ts +++ b/test/runtime/type/extends/symbol.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/Symbol', () => { diff --git a/test/runtime/type/extends/template-literal.ts b/test/runtime/type/extends/template-literal.ts index 1e8aeab..9b458ed 100644 --- a/test/runtime/type/extends/template-literal.ts +++ b/test/runtime/type/extends/template-literal.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/TemplateLiteral', () => { diff --git a/test/runtime/type/extends/tuple.ts b/test/runtime/type/extends/tuple.ts index 99bc360..4a95fe9 100644 --- a/test/runtime/type/extends/tuple.ts +++ b/test/runtime/type/extends/tuple.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/Tuple', () => { diff --git a/test/runtime/type/extends/uint8array.ts b/test/runtime/type/extends/uint8array.ts index 0128fb0..a71f989 100644 --- a/test/runtime/type/extends/uint8array.ts +++ b/test/runtime/type/extends/uint8array.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/Uint8Array', () => { diff --git a/test/runtime/type/extends/undefined.ts b/test/runtime/type/extends/undefined.ts index 4996a10..96609de 100644 --- a/test/runtime/type/extends/undefined.ts +++ b/test/runtime/type/extends/undefined.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/Undefined', () => { diff --git a/test/runtime/type/extends/union.ts b/test/runtime/type/extends/union.ts index 39783cf..8947b63 100644 --- a/test/runtime/type/extends/union.ts +++ b/test/runtime/type/extends/union.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/Union', () => { diff --git a/test/runtime/type/extends/unknown.ts b/test/runtime/type/extends/unknown.ts index 7622dbf..2a6c44b 100644 --- a/test/runtime/type/extends/unknown.ts +++ b/test/runtime/type/extends/unknown.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/Unknown', () => { diff --git a/test/runtime/type/extends/void.ts b/test/runtime/type/extends/void.ts index 48efc64..71bf97a 100644 --- a/test/runtime/type/extends/void.ts +++ b/test/runtime/type/extends/void.ts @@ -1,4 +1,4 @@ -import { Type, ExtendsCheck, ExtendsResult } from '@sinclair/typebox' +import { Type, ExtendsCheck, ExtendsResult } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/extends/Void', () => { diff --git a/test/runtime/type/guard/kind/any.ts b/test/runtime/type/guard/kind/any.ts index 87a860a..f0cff27 100644 --- a/test/runtime/type/guard/kind/any.ts +++ b/test/runtime/type/guard/kind/any.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TAny', () => { diff --git a/test/runtime/type/guard/kind/argument.ts b/test/runtime/type/guard/kind/argument.ts index 5739e1e..3e8e740 100644 --- a/test/runtime/type/guard/kind/argument.ts +++ b/test/runtime/type/guard/kind/argument.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TArgument', () => { diff --git a/test/runtime/type/guard/kind/array.ts b/test/runtime/type/guard/kind/array.ts index 6f7ce44..685e8a4 100644 --- a/test/runtime/type/guard/kind/array.ts +++ b/test/runtime/type/guard/kind/array.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TArray', () => { diff --git a/test/runtime/type/guard/kind/async-iterator.ts b/test/runtime/type/guard/kind/async-iterator.ts index 3e6d16e..eae72bf 100644 --- a/test/runtime/type/guard/kind/async-iterator.ts +++ b/test/runtime/type/guard/kind/async-iterator.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TAsyncIterator', () => { diff --git a/test/runtime/type/guard/kind/awaited.ts b/test/runtime/type/guard/kind/awaited.ts index 021c7f6..f6c9a34 100644 --- a/test/runtime/type/guard/kind/awaited.ts +++ b/test/runtime/type/guard/kind/awaited.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/Awaited', () => { diff --git a/test/runtime/type/guard/kind/bigint.ts b/test/runtime/type/guard/kind/bigint.ts index 33e89b2..fdd54ea 100644 --- a/test/runtime/type/guard/kind/bigint.ts +++ b/test/runtime/type/guard/kind/bigint.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TBigInt', () => { diff --git a/test/runtime/type/guard/kind/boolean.ts b/test/runtime/type/guard/kind/boolean.ts index abdfd26..198f8c6 100644 --- a/test/runtime/type/guard/kind/boolean.ts +++ b/test/runtime/type/guard/kind/boolean.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TBoolean', () => { diff --git a/test/runtime/type/guard/kind/capitalize.ts b/test/runtime/type/guard/kind/capitalize.ts index 3739377..6933258 100644 --- a/test/runtime/type/guard/kind/capitalize.ts +++ b/test/runtime/type/guard/kind/capitalize.ts @@ -1,4 +1,4 @@ -import { KindGuard, Type } from '@sinclair/typebox' +import { KindGuard, Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/Capitalize', () => { diff --git a/test/runtime/type/guard/kind/composite.ts b/test/runtime/type/guard/kind/composite.ts index bd70966..98c23c0 100644 --- a/test/runtime/type/guard/kind/composite.ts +++ b/test/runtime/type/guard/kind/composite.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TComposite', () => { diff --git a/test/runtime/type/guard/kind/computed.ts b/test/runtime/type/guard/kind/computed.ts index 5d7929a..44b77a7 100644 --- a/test/runtime/type/guard/kind/computed.ts +++ b/test/runtime/type/guard/kind/computed.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TComputed', () => { diff --git a/test/runtime/type/guard/kind/const.ts b/test/runtime/type/guard/kind/const.ts index cb2115c..453c2b8 100644 --- a/test/runtime/type/guard/kind/const.ts +++ b/test/runtime/type/guard/kind/const.ts @@ -1,5 +1,5 @@ -import { KindGuard, ValueGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard, ValueGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TConstT', () => { diff --git a/test/runtime/type/guard/kind/constructor.ts b/test/runtime/type/guard/kind/constructor.ts index d2146aa..9101808 100644 --- a/test/runtime/type/guard/kind/constructor.ts +++ b/test/runtime/type/guard/kind/constructor.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TConstructor', () => { diff --git a/test/runtime/type/guard/kind/date.ts b/test/runtime/type/guard/kind/date.ts index 5e2d252..109b194 100644 --- a/test/runtime/type/guard/kind/date.ts +++ b/test/runtime/type/guard/kind/date.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TDate', () => { diff --git a/test/runtime/type/guard/kind/enum.ts b/test/runtime/type/guard/kind/enum.ts index b47631c..8521948 100644 --- a/test/runtime/type/guard/kind/enum.ts +++ b/test/runtime/type/guard/kind/enum.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TEnum', () => { diff --git a/test/runtime/type/guard/kind/exclude.ts b/test/runtime/type/guard/kind/exclude.ts index d3a19af..5b19a7f 100644 --- a/test/runtime/type/guard/kind/exclude.ts +++ b/test/runtime/type/guard/kind/exclude.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TExclude', () => { diff --git a/test/runtime/type/guard/kind/extract.ts b/test/runtime/type/guard/kind/extract.ts index 54f4063..854a86e 100644 --- a/test/runtime/type/guard/kind/extract.ts +++ b/test/runtime/type/guard/kind/extract.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TExtract', () => { diff --git a/test/runtime/type/guard/kind/function.ts b/test/runtime/type/guard/kind/function.ts index cf868c7..f58e85e 100644 --- a/test/runtime/type/guard/kind/function.ts +++ b/test/runtime/type/guard/kind/function.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TFunction', () => { diff --git a/test/runtime/type/guard/kind/import.ts b/test/runtime/type/guard/kind/import.ts index 03921fe..45db6c4 100644 --- a/test/runtime/type/guard/kind/import.ts +++ b/test/runtime/type/guard/kind/import.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TImport', () => { diff --git a/test/runtime/type/guard/kind/indexed.ts b/test/runtime/type/guard/kind/indexed.ts index 4fc18ad..8a9ed6a 100644 --- a/test/runtime/type/guard/kind/indexed.ts +++ b/test/runtime/type/guard/kind/indexed.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TIndex', () => { diff --git a/test/runtime/type/guard/kind/integer.ts b/test/runtime/type/guard/kind/integer.ts index a8fce9a..952051a 100644 --- a/test/runtime/type/guard/kind/integer.ts +++ b/test/runtime/type/guard/kind/integer.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TInteger', () => { diff --git a/test/runtime/type/guard/kind/intersect.ts b/test/runtime/type/guard/kind/intersect.ts index f167810..dd3ab15 100644 --- a/test/runtime/type/guard/kind/intersect.ts +++ b/test/runtime/type/guard/kind/intersect.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TIntersect', () => { diff --git a/test/runtime/type/guard/kind/iterator.ts b/test/runtime/type/guard/kind/iterator.ts index 5e650b4..ce4ea21 100644 --- a/test/runtime/type/guard/kind/iterator.ts +++ b/test/runtime/type/guard/kind/iterator.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TIterator', () => { diff --git a/test/runtime/type/guard/kind/keyof.ts b/test/runtime/type/guard/kind/keyof.ts index 5d2867b..d9db887 100644 --- a/test/runtime/type/guard/kind/keyof.ts +++ b/test/runtime/type/guard/kind/keyof.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TKeyOf', () => { diff --git a/test/runtime/type/guard/kind/kind.ts b/test/runtime/type/guard/kind/kind.ts index 6ae707a..266fd89 100644 --- a/test/runtime/type/guard/kind/kind.ts +++ b/test/runtime/type/guard/kind/kind.ts @@ -1,4 +1,4 @@ -import { KindGuard, Kind } from '@sinclair/typebox' +import { KindGuard, Kind } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TKind', () => { diff --git a/test/runtime/type/guard/kind/literal.ts b/test/runtime/type/guard/kind/literal.ts index 413bc94..8df6ef9 100644 --- a/test/runtime/type/guard/kind/literal.ts +++ b/test/runtime/type/guard/kind/literal.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TLiteral', () => { diff --git a/test/runtime/type/guard/kind/lowercase.ts b/test/runtime/type/guard/kind/lowercase.ts index d2ef0cc..e29ddc1 100644 --- a/test/runtime/type/guard/kind/lowercase.ts +++ b/test/runtime/type/guard/kind/lowercase.ts @@ -1,4 +1,4 @@ -import { KindGuard, Type } from '@sinclair/typebox' +import { KindGuard, Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/Lowercase', () => { diff --git a/test/runtime/type/guard/kind/mapped.ts b/test/runtime/type/guard/kind/mapped.ts index c4673e1..f4b287f 100644 --- a/test/runtime/type/guard/kind/mapped.ts +++ b/test/runtime/type/guard/kind/mapped.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' // prettier-ignore diff --git a/test/runtime/type/guard/kind/not.ts b/test/runtime/type/guard/kind/not.ts index a30c2e6..16a6900 100644 --- a/test/runtime/type/guard/kind/not.ts +++ b/test/runtime/type/guard/kind/not.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TNot', () => { diff --git a/test/runtime/type/guard/kind/null.ts b/test/runtime/type/guard/kind/null.ts index 81e29b0..51959db 100644 --- a/test/runtime/type/guard/kind/null.ts +++ b/test/runtime/type/guard/kind/null.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TNull', () => { diff --git a/test/runtime/type/guard/kind/number.ts b/test/runtime/type/guard/kind/number.ts index 00a992b..ad01102 100644 --- a/test/runtime/type/guard/kind/number.ts +++ b/test/runtime/type/guard/kind/number.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TNumber', () => { diff --git a/test/runtime/type/guard/kind/object.ts b/test/runtime/type/guard/kind/object.ts index f0c4518..703fad3 100644 --- a/test/runtime/type/guard/kind/object.ts +++ b/test/runtime/type/guard/kind/object.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TObject', () => { diff --git a/test/runtime/type/guard/kind/omit.ts b/test/runtime/type/guard/kind/omit.ts index 1aba2a8..f2a718a 100644 --- a/test/runtime/type/guard/kind/omit.ts +++ b/test/runtime/type/guard/kind/omit.ts @@ -1,4 +1,4 @@ -import { KindGuard, Type, Kind, TransformKind } from '@sinclair/typebox' +import { KindGuard, Type, Kind, TransformKind } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TOmit', () => { diff --git a/test/runtime/type/guard/kind/partial.ts b/test/runtime/type/guard/kind/partial.ts index f9f4615..5015d2f 100644 --- a/test/runtime/type/guard/kind/partial.ts +++ b/test/runtime/type/guard/kind/partial.ts @@ -1,4 +1,4 @@ -import { KindGuard, TypeRegistry, Type, Kind, TransformKind } from '@sinclair/typebox' +import { KindGuard, TypeRegistry, Type, Kind, TransformKind } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TPartial', () => { diff --git a/test/runtime/type/guard/kind/pick.ts b/test/runtime/type/guard/kind/pick.ts index 25bc99e..53618af 100644 --- a/test/runtime/type/guard/kind/pick.ts +++ b/test/runtime/type/guard/kind/pick.ts @@ -1,4 +1,4 @@ -import { KindGuard, Type, Kind, TransformKind } from '@sinclair/typebox' +import { KindGuard, Type, Kind, TransformKind } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TPick', () => { diff --git a/test/runtime/type/guard/kind/promise.ts b/test/runtime/type/guard/kind/promise.ts index f59c946..0f53e35 100644 --- a/test/runtime/type/guard/kind/promise.ts +++ b/test/runtime/type/guard/kind/promise.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TPromise', () => { diff --git a/test/runtime/type/guard/kind/record.ts b/test/runtime/type/guard/kind/record.ts index 85ba4e9..07bab6d 100644 --- a/test/runtime/type/guard/kind/record.ts +++ b/test/runtime/type/guard/kind/record.ts @@ -1,5 +1,5 @@ -import { TypeGuard, PatternNumberExact, PatternStringExact, PatternString, PatternNeverExact } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard, PatternNumberExact, PatternStringExact, PatternString, PatternNeverExact } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TRecord', () => { diff --git a/test/runtime/type/guard/kind/recursive.ts b/test/runtime/type/guard/kind/recursive.ts index 81f8e41..01f0323 100644 --- a/test/runtime/type/guard/kind/recursive.ts +++ b/test/runtime/type/guard/kind/recursive.ts @@ -1,5 +1,5 @@ -import { KindGuard, PatternNumberExact, PatternStringExact, PatternString, PatternNumber } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard, PatternNumberExact, PatternStringExact, PatternString, PatternNumber } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TRecursive', () => { diff --git a/test/runtime/type/guard/kind/ref.ts b/test/runtime/type/guard/kind/ref.ts index 60d6746..38dd012 100644 --- a/test/runtime/type/guard/kind/ref.ts +++ b/test/runtime/type/guard/kind/ref.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TRef', () => { diff --git a/test/runtime/type/guard/kind/regexp.ts b/test/runtime/type/guard/kind/regexp.ts index a4f3814..a7f8960 100644 --- a/test/runtime/type/guard/kind/regexp.ts +++ b/test/runtime/type/guard/kind/regexp.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TRegExp', () => { diff --git a/test/runtime/type/guard/kind/required.ts b/test/runtime/type/guard/kind/required.ts index 0bf29e4..949a5ed 100644 --- a/test/runtime/type/guard/kind/required.ts +++ b/test/runtime/type/guard/kind/required.ts @@ -1,4 +1,4 @@ -import { KindGuard, TypeRegistry, Type, Kind, TransformKind } from '@sinclair/typebox' +import { KindGuard, TypeRegistry, Type, Kind, TransformKind } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TRequired', () => { diff --git a/test/runtime/type/guard/kind/rest.ts b/test/runtime/type/guard/kind/rest.ts index bb63a47..e37de74 100644 --- a/test/runtime/type/guard/kind/rest.ts +++ b/test/runtime/type/guard/kind/rest.ts @@ -1,4 +1,4 @@ -import { Type, KindGuard } from '@sinclair/typebox' +import { Type, KindGuard } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TRest', () => { diff --git a/test/runtime/type/guard/kind/string.ts b/test/runtime/type/guard/kind/string.ts index ca9b591..da842d9 100644 --- a/test/runtime/type/guard/kind/string.ts +++ b/test/runtime/type/guard/kind/string.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TString', () => { diff --git a/test/runtime/type/guard/kind/symbol.ts b/test/runtime/type/guard/kind/symbol.ts index f58924b..1dbdb7c 100644 --- a/test/runtime/type/guard/kind/symbol.ts +++ b/test/runtime/type/guard/kind/symbol.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TSymbol', () => { diff --git a/test/runtime/type/guard/kind/template-literal.ts b/test/runtime/type/guard/kind/template-literal.ts index 9c01c31..0e4730c 100644 --- a/test/runtime/type/guard/kind/template-literal.ts +++ b/test/runtime/type/guard/kind/template-literal.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TTemplateLiteral', () => { diff --git a/test/runtime/type/guard/kind/this.ts b/test/runtime/type/guard/kind/this.ts index ee1cd4d..46edc29 100644 --- a/test/runtime/type/guard/kind/this.ts +++ b/test/runtime/type/guard/kind/this.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TThis', () => { diff --git a/test/runtime/type/guard/kind/tuple.ts b/test/runtime/type/guard/kind/tuple.ts index 289ba57..a1c5174 100644 --- a/test/runtime/type/guard/kind/tuple.ts +++ b/test/runtime/type/guard/kind/tuple.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TTuple', () => { diff --git a/test/runtime/type/guard/kind/uint8array.ts b/test/runtime/type/guard/kind/uint8array.ts index f8af307..7423260 100644 --- a/test/runtime/type/guard/kind/uint8array.ts +++ b/test/runtime/type/guard/kind/uint8array.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TUint8Array', () => { diff --git a/test/runtime/type/guard/kind/uncapitalize.ts b/test/runtime/type/guard/kind/uncapitalize.ts index 65c75b2..53a2ea8 100644 --- a/test/runtime/type/guard/kind/uncapitalize.ts +++ b/test/runtime/type/guard/kind/uncapitalize.ts @@ -1,4 +1,4 @@ -import { KindGuard, Type } from '@sinclair/typebox' +import { KindGuard, Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/Uncapitalize', () => { diff --git a/test/runtime/type/guard/kind/undefined.ts b/test/runtime/type/guard/kind/undefined.ts index 1c7aebb..66648a8 100644 --- a/test/runtime/type/guard/kind/undefined.ts +++ b/test/runtime/type/guard/kind/undefined.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TUndefined', () => { diff --git a/test/runtime/type/guard/kind/union.ts b/test/runtime/type/guard/kind/union.ts index 03e934f..1ae823e 100644 --- a/test/runtime/type/guard/kind/union.ts +++ b/test/runtime/type/guard/kind/union.ts @@ -1,5 +1,5 @@ -import { TSchema, KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TSchema, KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TUnion', () => { diff --git a/test/runtime/type/guard/kind/unknown.ts b/test/runtime/type/guard/kind/unknown.ts index 066414e..b2c08a8 100644 --- a/test/runtime/type/guard/kind/unknown.ts +++ b/test/runtime/type/guard/kind/unknown.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TUnknown', () => { diff --git a/test/runtime/type/guard/kind/unsafe.ts b/test/runtime/type/guard/kind/unsafe.ts index c0f206d..8f1ec1c 100644 --- a/test/runtime/type/guard/kind/unsafe.ts +++ b/test/runtime/type/guard/kind/unsafe.ts @@ -1,5 +1,5 @@ -import { Kind, KindGuard, TypeRegistry } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { Kind, KindGuard, TypeRegistry } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TUnsafe', () => { diff --git a/test/runtime/type/guard/kind/uppercase.ts b/test/runtime/type/guard/kind/uppercase.ts index fc8a796..8a02032 100644 --- a/test/runtime/type/guard/kind/uppercase.ts +++ b/test/runtime/type/guard/kind/uppercase.ts @@ -1,4 +1,4 @@ -import { KindGuard, Type } from '@sinclair/typebox' +import { KindGuard, Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/Uppercase', () => { diff --git a/test/runtime/type/guard/kind/void.ts b/test/runtime/type/guard/kind/void.ts index 40370e0..76bc186 100644 --- a/test/runtime/type/guard/kind/void.ts +++ b/test/runtime/type/guard/kind/void.ts @@ -1,5 +1,5 @@ -import { KindGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { KindGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/kind/TVoid', () => { diff --git a/test/runtime/type/guard/type/any.ts b/test/runtime/type/guard/type/any.ts index 6eebd94..949a014 100644 --- a/test/runtime/type/guard/type/any.ts +++ b/test/runtime/type/guard/type/any.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TAny', () => { diff --git a/test/runtime/type/guard/type/argument.ts b/test/runtime/type/guard/type/argument.ts index 904cf80..d7049b2 100644 --- a/test/runtime/type/guard/type/argument.ts +++ b/test/runtime/type/guard/type/argument.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TArgument', () => { diff --git a/test/runtime/type/guard/type/array.ts b/test/runtime/type/guard/type/array.ts index fe10337..18c266b 100644 --- a/test/runtime/type/guard/type/array.ts +++ b/test/runtime/type/guard/type/array.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TArray', () => { diff --git a/test/runtime/type/guard/type/async-iterator.ts b/test/runtime/type/guard/type/async-iterator.ts index cde7372..08bb5ef 100644 --- a/test/runtime/type/guard/type/async-iterator.ts +++ b/test/runtime/type/guard/type/async-iterator.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TAsyncIterator', () => { diff --git a/test/runtime/type/guard/type/awaited.ts b/test/runtime/type/guard/type/awaited.ts index fbfe4dc..2420a68 100644 --- a/test/runtime/type/guard/type/awaited.ts +++ b/test/runtime/type/guard/type/awaited.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/Awaited', () => { diff --git a/test/runtime/type/guard/type/bigint.ts b/test/runtime/type/guard/type/bigint.ts index fa9eb3b..e286249 100644 --- a/test/runtime/type/guard/type/bigint.ts +++ b/test/runtime/type/guard/type/bigint.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TBigInt', () => { diff --git a/test/runtime/type/guard/type/boolean.ts b/test/runtime/type/guard/type/boolean.ts index 27c9df1..93407a9 100644 --- a/test/runtime/type/guard/type/boolean.ts +++ b/test/runtime/type/guard/type/boolean.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TBoolean', () => { diff --git a/test/runtime/type/guard/type/capitalize.ts b/test/runtime/type/guard/type/capitalize.ts index c34b084..93121c8 100644 --- a/test/runtime/type/guard/type/capitalize.ts +++ b/test/runtime/type/guard/type/capitalize.ts @@ -1,4 +1,4 @@ -import { TypeGuard, Type } from '@sinclair/typebox' +import { TypeGuard, Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/Capitalize', () => { diff --git a/test/runtime/type/guard/type/composite.ts b/test/runtime/type/guard/type/composite.ts index 1cada80..6aa9286 100644 --- a/test/runtime/type/guard/type/composite.ts +++ b/test/runtime/type/guard/type/composite.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TComposite', () => { diff --git a/test/runtime/type/guard/type/computed.ts b/test/runtime/type/guard/type/computed.ts index d4dd6df..9d22083 100644 --- a/test/runtime/type/guard/type/computed.ts +++ b/test/runtime/type/guard/type/computed.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TComputed', () => { diff --git a/test/runtime/type/guard/type/const.ts b/test/runtime/type/guard/type/const.ts index 408075c..903b1eb 100644 --- a/test/runtime/type/guard/type/const.ts +++ b/test/runtime/type/guard/type/const.ts @@ -1,5 +1,5 @@ -import { TypeGuard, ValueGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard, ValueGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TConstT', () => { diff --git a/test/runtime/type/guard/type/constructor.ts b/test/runtime/type/guard/type/constructor.ts index 9c55370..1e22699 100644 --- a/test/runtime/type/guard/type/constructor.ts +++ b/test/runtime/type/guard/type/constructor.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TConstructor', () => { diff --git a/test/runtime/type/guard/type/date.ts b/test/runtime/type/guard/type/date.ts index 930cc19..c2f0f6c 100644 --- a/test/runtime/type/guard/type/date.ts +++ b/test/runtime/type/guard/type/date.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TDate', () => { diff --git a/test/runtime/type/guard/type/enum.ts b/test/runtime/type/guard/type/enum.ts index 4097c1b..5ba576f 100644 --- a/test/runtime/type/guard/type/enum.ts +++ b/test/runtime/type/guard/type/enum.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TEnum', () => { diff --git a/test/runtime/type/guard/type/exclude.ts b/test/runtime/type/guard/type/exclude.ts index 973ab85..01277f5 100644 --- a/test/runtime/type/guard/type/exclude.ts +++ b/test/runtime/type/guard/type/exclude.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TExclude', () => { diff --git a/test/runtime/type/guard/type/extract.ts b/test/runtime/type/guard/type/extract.ts index 93f7b1f..1e4de3e 100644 --- a/test/runtime/type/guard/type/extract.ts +++ b/test/runtime/type/guard/type/extract.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TExtract', () => { diff --git a/test/runtime/type/guard/type/function.ts b/test/runtime/type/guard/type/function.ts index 81bbfe8..23db3af 100644 --- a/test/runtime/type/guard/type/function.ts +++ b/test/runtime/type/guard/type/function.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TFunction', () => { diff --git a/test/runtime/type/guard/type/import.ts b/test/runtime/type/guard/type/import.ts index 9108076..4423fcb 100644 --- a/test/runtime/type/guard/type/import.ts +++ b/test/runtime/type/guard/type/import.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TImport', () => { diff --git a/test/runtime/type/guard/type/indexed.ts b/test/runtime/type/guard/type/indexed.ts index 55225c8..b86fdd7 100644 --- a/test/runtime/type/guard/type/indexed.ts +++ b/test/runtime/type/guard/type/indexed.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TIndex', () => { diff --git a/test/runtime/type/guard/type/integer.ts b/test/runtime/type/guard/type/integer.ts index add1f31..2288e72 100644 --- a/test/runtime/type/guard/type/integer.ts +++ b/test/runtime/type/guard/type/integer.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TInteger', () => { diff --git a/test/runtime/type/guard/type/intersect.ts b/test/runtime/type/guard/type/intersect.ts index 7b345ef..12b9fd2 100644 --- a/test/runtime/type/guard/type/intersect.ts +++ b/test/runtime/type/guard/type/intersect.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TIntersect', () => { diff --git a/test/runtime/type/guard/type/iterator.ts b/test/runtime/type/guard/type/iterator.ts index 74e984c..f5aa6a2 100644 --- a/test/runtime/type/guard/type/iterator.ts +++ b/test/runtime/type/guard/type/iterator.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TIterator', () => { diff --git a/test/runtime/type/guard/type/keyof.ts b/test/runtime/type/guard/type/keyof.ts index 50d95ec..664edeb 100644 --- a/test/runtime/type/guard/type/keyof.ts +++ b/test/runtime/type/guard/type/keyof.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TKeyOf', () => { diff --git a/test/runtime/type/guard/type/kind.ts b/test/runtime/type/guard/type/kind.ts index f0223e8..95f53bb 100644 --- a/test/runtime/type/guard/type/kind.ts +++ b/test/runtime/type/guard/type/kind.ts @@ -1,4 +1,4 @@ -import { TypeGuard, Kind } from '@sinclair/typebox' +import { TypeGuard, Kind } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TKind', () => { diff --git a/test/runtime/type/guard/type/literal.ts b/test/runtime/type/guard/type/literal.ts index fcfe4b7..586f2d2 100644 --- a/test/runtime/type/guard/type/literal.ts +++ b/test/runtime/type/guard/type/literal.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TLiteral', () => { diff --git a/test/runtime/type/guard/type/lowercase.ts b/test/runtime/type/guard/type/lowercase.ts index f274be4..ccd613b 100644 --- a/test/runtime/type/guard/type/lowercase.ts +++ b/test/runtime/type/guard/type/lowercase.ts @@ -1,4 +1,4 @@ -import { TypeGuard, Type } from '@sinclair/typebox' +import { TypeGuard, Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/Lowercase', () => { diff --git a/test/runtime/type/guard/type/mapped.ts b/test/runtime/type/guard/type/mapped.ts index 99eeff5..f1e6fb9 100644 --- a/test/runtime/type/guard/type/mapped.ts +++ b/test/runtime/type/guard/type/mapped.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' // prettier-ignore diff --git a/test/runtime/type/guard/type/not.ts b/test/runtime/type/guard/type/not.ts index fcfd8b7..9b46206 100644 --- a/test/runtime/type/guard/type/not.ts +++ b/test/runtime/type/guard/type/not.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TNot', () => { diff --git a/test/runtime/type/guard/type/null.ts b/test/runtime/type/guard/type/null.ts index fc2e85f..263f3f3 100644 --- a/test/runtime/type/guard/type/null.ts +++ b/test/runtime/type/guard/type/null.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TNull', () => { diff --git a/test/runtime/type/guard/type/number.ts b/test/runtime/type/guard/type/number.ts index c4550ae..d15e7ed 100644 --- a/test/runtime/type/guard/type/number.ts +++ b/test/runtime/type/guard/type/number.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TNumber', () => { diff --git a/test/runtime/type/guard/type/object.ts b/test/runtime/type/guard/type/object.ts index 49368dd..46a4090 100644 --- a/test/runtime/type/guard/type/object.ts +++ b/test/runtime/type/guard/type/object.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TObject', () => { diff --git a/test/runtime/type/guard/type/omit.ts b/test/runtime/type/guard/type/omit.ts index cbfa161..4594af0 100644 --- a/test/runtime/type/guard/type/omit.ts +++ b/test/runtime/type/guard/type/omit.ts @@ -1,4 +1,4 @@ -import { TypeGuard, Type, Kind, TransformKind } from '@sinclair/typebox' +import { TypeGuard, Type, Kind, TransformKind } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TOmit', () => { diff --git a/test/runtime/type/guard/type/partial.ts b/test/runtime/type/guard/type/partial.ts index c2cb213..3c7eceb 100644 --- a/test/runtime/type/guard/type/partial.ts +++ b/test/runtime/type/guard/type/partial.ts @@ -1,4 +1,4 @@ -import { TypeGuard, TypeRegistry, Type, Kind, TransformKind } from '@sinclair/typebox' +import { TypeGuard, TypeRegistry, Type, Kind, TransformKind } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TPartial', () => { diff --git a/test/runtime/type/guard/type/pick.ts b/test/runtime/type/guard/type/pick.ts index 65153aa..465a5f4 100644 --- a/test/runtime/type/guard/type/pick.ts +++ b/test/runtime/type/guard/type/pick.ts @@ -1,4 +1,4 @@ -import { TypeGuard, Type, Kind, TransformKind } from '@sinclair/typebox' +import { TypeGuard, Type, Kind, TransformKind } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TPick', () => { diff --git a/test/runtime/type/guard/type/promise.ts b/test/runtime/type/guard/type/promise.ts index 073dbcf..4d44fa4 100644 --- a/test/runtime/type/guard/type/promise.ts +++ b/test/runtime/type/guard/type/promise.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TPromise', () => { diff --git a/test/runtime/type/guard/type/record.ts b/test/runtime/type/guard/type/record.ts index 0bf6911..3566447 100644 --- a/test/runtime/type/guard/type/record.ts +++ b/test/runtime/type/guard/type/record.ts @@ -1,5 +1,5 @@ -import { TypeGuard, PatternNumberExact, PatternStringExact, PatternNeverExact, PatternString, PatternNumber } from '@sinclair/typebox' -import { Type, RecordKey, RecordValue, RecordPattern } from '@sinclair/typebox' +import { TypeGuard, PatternNumberExact, PatternStringExact, PatternNeverExact, PatternString, PatternNumber } from '@alkdev/typebox' +import { Type, RecordKey, RecordValue, RecordPattern } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TRecord', () => { diff --git a/test/runtime/type/guard/type/recursive.ts b/test/runtime/type/guard/type/recursive.ts index 861b066..73e81c7 100644 --- a/test/runtime/type/guard/type/recursive.ts +++ b/test/runtime/type/guard/type/recursive.ts @@ -1,5 +1,5 @@ -import { TypeGuard, PatternNumberExact, PatternStringExact, PatternString, PatternNumber } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard, PatternNumberExact, PatternStringExact, PatternString, PatternNumber } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TRecursive', () => { diff --git a/test/runtime/type/guard/type/ref.ts b/test/runtime/type/guard/type/ref.ts index 0228f01..8cbec50 100644 --- a/test/runtime/type/guard/type/ref.ts +++ b/test/runtime/type/guard/type/ref.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type, CloneType } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type, CloneType } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TRef', () => { diff --git a/test/runtime/type/guard/type/regexp.ts b/test/runtime/type/guard/type/regexp.ts index 759d398..294364c 100644 --- a/test/runtime/type/guard/type/regexp.ts +++ b/test/runtime/type/guard/type/regexp.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TRegExp', () => { diff --git a/test/runtime/type/guard/type/required.ts b/test/runtime/type/guard/type/required.ts index 3c48695..96c9119 100644 --- a/test/runtime/type/guard/type/required.ts +++ b/test/runtime/type/guard/type/required.ts @@ -1,4 +1,4 @@ -import { TypeGuard, TypeRegistry, Type, Kind, TransformKind } from '@sinclair/typebox' +import { TypeGuard, TypeRegistry, Type, Kind, TransformKind } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TRequired', () => { diff --git a/test/runtime/type/guard/type/rest.ts b/test/runtime/type/guard/type/rest.ts index 8383c2b..7377bc9 100644 --- a/test/runtime/type/guard/type/rest.ts +++ b/test/runtime/type/guard/type/rest.ts @@ -1,4 +1,4 @@ -import { Type, TypeGuard } from '@sinclair/typebox' +import { Type, TypeGuard } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TRest', () => { diff --git a/test/runtime/type/guard/type/string.ts b/test/runtime/type/guard/type/string.ts index 42aae37..3f72bc9 100644 --- a/test/runtime/type/guard/type/string.ts +++ b/test/runtime/type/guard/type/string.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TString', () => { diff --git a/test/runtime/type/guard/type/symbol.ts b/test/runtime/type/guard/type/symbol.ts index 488e083..71f5c56 100644 --- a/test/runtime/type/guard/type/symbol.ts +++ b/test/runtime/type/guard/type/symbol.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TSymbol', () => { diff --git a/test/runtime/type/guard/type/template-literal.ts b/test/runtime/type/guard/type/template-literal.ts index f00db33..fa89c87 100644 --- a/test/runtime/type/guard/type/template-literal.ts +++ b/test/runtime/type/guard/type/template-literal.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type, CloneType, TemplateLiteralGenerate } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type, CloneType, TemplateLiteralGenerate } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TTemplateLiteral', () => { diff --git a/test/runtime/type/guard/type/this.ts b/test/runtime/type/guard/type/this.ts index 8000182..c7f3b4e 100644 --- a/test/runtime/type/guard/type/this.ts +++ b/test/runtime/type/guard/type/this.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TThis', () => { diff --git a/test/runtime/type/guard/type/tuple.ts b/test/runtime/type/guard/type/tuple.ts index b47ecde..be5c478 100644 --- a/test/runtime/type/guard/type/tuple.ts +++ b/test/runtime/type/guard/type/tuple.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TTuple', () => { diff --git a/test/runtime/type/guard/type/uint8array.ts b/test/runtime/type/guard/type/uint8array.ts index ae0b88c..97a01b3 100644 --- a/test/runtime/type/guard/type/uint8array.ts +++ b/test/runtime/type/guard/type/uint8array.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TUint8Array', () => { diff --git a/test/runtime/type/guard/type/uncapitalize.ts b/test/runtime/type/guard/type/uncapitalize.ts index 61a60e9..2343962 100644 --- a/test/runtime/type/guard/type/uncapitalize.ts +++ b/test/runtime/type/guard/type/uncapitalize.ts @@ -1,4 +1,4 @@ -import { TypeGuard, Type } from '@sinclair/typebox' +import { TypeGuard, Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/Uncapitalize', () => { diff --git a/test/runtime/type/guard/type/undefined.ts b/test/runtime/type/guard/type/undefined.ts index ccebb95..b5f51c3 100644 --- a/test/runtime/type/guard/type/undefined.ts +++ b/test/runtime/type/guard/type/undefined.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TUndefined', () => { diff --git a/test/runtime/type/guard/type/union.ts b/test/runtime/type/guard/type/union.ts index fb5ca44..ed3fac0 100644 --- a/test/runtime/type/guard/type/union.ts +++ b/test/runtime/type/guard/type/union.ts @@ -1,5 +1,5 @@ -import { TSchema, TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TSchema, TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TUnion', () => { diff --git a/test/runtime/type/guard/type/unknown.ts b/test/runtime/type/guard/type/unknown.ts index 7cc9a29..8656891 100644 --- a/test/runtime/type/guard/type/unknown.ts +++ b/test/runtime/type/guard/type/unknown.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TUnknown', () => { diff --git a/test/runtime/type/guard/type/unsafe.ts b/test/runtime/type/guard/type/unsafe.ts index 1b88d9d..2c39275 100644 --- a/test/runtime/type/guard/type/unsafe.ts +++ b/test/runtime/type/guard/type/unsafe.ts @@ -1,5 +1,5 @@ -import { Kind, TypeGuard, TypeRegistry } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { Kind, TypeGuard, TypeRegistry } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TUnsafe', () => { diff --git a/test/runtime/type/guard/type/uppercase.ts b/test/runtime/type/guard/type/uppercase.ts index ba10aa4..91a8e8a 100644 --- a/test/runtime/type/guard/type/uppercase.ts +++ b/test/runtime/type/guard/type/uppercase.ts @@ -1,4 +1,4 @@ -import { TypeGuard, Type } from '@sinclair/typebox' +import { TypeGuard, Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/Uppercase', () => { diff --git a/test/runtime/type/guard/type/void.ts b/test/runtime/type/guard/type/void.ts index f9320c6..657b2d1 100644 --- a/test/runtime/type/guard/type/void.ts +++ b/test/runtime/type/guard/type/void.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../../assert/index' describe('guard/type/TVoid', () => { diff --git a/test/runtime/type/guard/value/guard.ts b/test/runtime/type/guard/value/guard.ts index b58df9b..e8f850c 100644 --- a/test/runtime/type/guard/value/guard.ts +++ b/test/runtime/type/guard/value/guard.ts @@ -1,5 +1,5 @@ import { Assert } from '../../../assert/index' -import { ValueGuard } from '@sinclair/typebox' +import { ValueGuard } from '@alkdev/typebox' describe('type/ValueGuard', () => { // ----------------------------------------------------- diff --git a/test/runtime/type/intrinsic/intrinsic.ts b/test/runtime/type/intrinsic/intrinsic.ts index a6a18f3..6d2b2e3 100644 --- a/test/runtime/type/intrinsic/intrinsic.ts +++ b/test/runtime/type/intrinsic/intrinsic.ts @@ -1,6 +1,6 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Intrinsic } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Intrinsic } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/intrinsic/Intrinsic', () => { diff --git a/test/runtime/type/normalize/exclude.ts b/test/runtime/type/normalize/exclude.ts index 53fad9c..d58ca20 100644 --- a/test/runtime/type/normalize/exclude.ts +++ b/test/runtime/type/normalize/exclude.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/normalize/Exclude', () => { diff --git a/test/runtime/type/normalize/extract.ts b/test/runtime/type/normalize/extract.ts index 196ee0f..fefc002 100644 --- a/test/runtime/type/normalize/extract.ts +++ b/test/runtime/type/normalize/extract.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/normalize/Extract', () => { diff --git a/test/runtime/type/normalize/indexed.ts b/test/runtime/type/normalize/indexed.ts index 543f9b5..2abc888 100644 --- a/test/runtime/type/normalize/indexed.ts +++ b/test/runtime/type/normalize/indexed.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/normalize/Index', () => { diff --git a/test/runtime/type/normalize/intersect.ts b/test/runtime/type/normalize/intersect.ts index cf73898..3edb657 100644 --- a/test/runtime/type/normalize/intersect.ts +++ b/test/runtime/type/normalize/intersect.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/normalize/Intersect', () => { diff --git a/test/runtime/type/normalize/record.ts b/test/runtime/type/normalize/record.ts index ef463f5..72ce64a 100644 --- a/test/runtime/type/normalize/record.ts +++ b/test/runtime/type/normalize/record.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/normalize/Record', () => { diff --git a/test/runtime/type/normalize/union.ts b/test/runtime/type/normalize/union.ts index 2ab700f..82d910a 100644 --- a/test/runtime/type/normalize/union.ts +++ b/test/runtime/type/normalize/union.ts @@ -1,5 +1,5 @@ -import { TypeGuard } from '@sinclair/typebox' -import { Type } from '@sinclair/typebox' +import { TypeGuard } from '@alkdev/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/normalize/Union', () => { diff --git a/test/runtime/type/options/assign-builder.ts b/test/runtime/type/options/assign-builder.ts index f24e04f..a7295f1 100644 --- a/test/runtime/type/options/assign-builder.ts +++ b/test/runtime/type/options/assign-builder.ts @@ -1,4 +1,4 @@ -import { JavaScriptTypeBuilder } from '@sinclair/typebox' +import { JavaScriptTypeBuilder } from '@alkdev/typebox' import { Assert } from '../../assert/index' const Type = new JavaScriptTypeBuilder() diff --git a/test/runtime/type/options/assign.ts b/test/runtime/type/options/assign.ts index 274d2f4..5a46599 100644 --- a/test/runtime/type/options/assign.ts +++ b/test/runtime/type/options/assign.ts @@ -1,4 +1,4 @@ -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/options/Assign', () => { diff --git a/test/runtime/type/registry/format.ts b/test/runtime/type/registry/format.ts index 812a3de..c658f3a 100644 --- a/test/runtime/type/registry/format.ts +++ b/test/runtime/type/registry/format.ts @@ -1,4 +1,4 @@ -import { FormatRegistry } from '@sinclair/typebox' +import { FormatRegistry } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/registry/Format', () => { diff --git a/test/runtime/type/registry/type.ts b/test/runtime/type/registry/type.ts index b36d2a8..09a992f 100644 --- a/test/runtime/type/registry/type.ts +++ b/test/runtime/type/registry/type.ts @@ -1,4 +1,4 @@ -import { TypeRegistry } from '@sinclair/typebox' +import { TypeRegistry } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/registry/Type', () => { diff --git a/test/runtime/type/sets/sets.ts b/test/runtime/type/sets/sets.ts index 6bfef3c..9ed5866 100644 --- a/test/runtime/type/sets/sets.ts +++ b/test/runtime/type/sets/sets.ts @@ -1,4 +1,4 @@ -import * as Type from '@sinclair/typebox' +import * as Type from '@alkdev/typebox' import { Assert } from '../../assert' describe('type/sets', () => { diff --git a/test/runtime/type/template-literal/finite.ts b/test/runtime/type/template-literal/finite.ts index a6a97ef..35e388c 100644 --- a/test/runtime/type/template-literal/finite.ts +++ b/test/runtime/type/template-literal/finite.ts @@ -1,4 +1,4 @@ -import { TemplateLiteralParse, IsTemplateLiteralExpressionFinite, PatternString, PatternBoolean, PatternNumber } from '@sinclair/typebox' +import { TemplateLiteralParse, IsTemplateLiteralExpressionFinite, PatternString, PatternBoolean, PatternNumber } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/template-literal/IsTemplateLiteralExpressionFinite', () => { diff --git a/test/runtime/type/template-literal/generate.ts b/test/runtime/type/template-literal/generate.ts index 1977547..27b5475 100644 --- a/test/runtime/type/template-literal/generate.ts +++ b/test/runtime/type/template-literal/generate.ts @@ -1,4 +1,4 @@ -import { TemplateLiteralParse, TemplateLiteralExpressionGenerate } from '@sinclair/typebox' +import { TemplateLiteralParse, TemplateLiteralExpressionGenerate } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/template-literal/TemplateLiteralExpressionGenerate', () => { diff --git a/test/runtime/type/template-literal/parse.ts b/test/runtime/type/template-literal/parse.ts index 679cb4b..919e636 100644 --- a/test/runtime/type/template-literal/parse.ts +++ b/test/runtime/type/template-literal/parse.ts @@ -1,4 +1,4 @@ -import { TemplateLiteralParse } from '@sinclair/typebox' +import { TemplateLiteralParse } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/template-literal/TemplateLiteralParser', () => { diff --git a/test/runtime/type/template-literal/pattern.ts b/test/runtime/type/template-literal/pattern.ts index 1a8b13f..c38516e 100644 --- a/test/runtime/type/template-literal/pattern.ts +++ b/test/runtime/type/template-literal/pattern.ts @@ -1,4 +1,4 @@ -import { Type, TTemplateLiteral, PatternNumber, PatternString, PatternBoolean } from '@sinclair/typebox' +import { Type, TTemplateLiteral, PatternNumber, PatternString, PatternBoolean } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('type/template-literal/TemplateLiteralPattern', () => { diff --git a/test/runtime/value/assert/assert.ts b/test/runtime/value/assert/assert.ts index fe3afdc..3f2c6d4 100644 --- a/test/runtime/value/assert/assert.ts +++ b/test/runtime/value/assert/assert.ts @@ -1,5 +1,5 @@ -import { Value, AssertError } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value, AssertError } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/Assert', () => { diff --git a/test/runtime/value/cast/any.ts b/test/runtime/value/cast/any.ts index 832caf5..e16309c 100644 --- a/test/runtime/value/cast/any.ts +++ b/test/runtime/value/cast/any.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Any', () => { diff --git a/test/runtime/value/cast/array.ts b/test/runtime/value/cast/array.ts index 83ad7f6..3a31901 100644 --- a/test/runtime/value/cast/array.ts +++ b/test/runtime/value/cast/array.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Array', () => { diff --git a/test/runtime/value/cast/async-iterator.ts b/test/runtime/value/cast/async-iterator.ts index ac27c09..c51e3b1 100644 --- a/test/runtime/value/cast/async-iterator.ts +++ b/test/runtime/value/cast/async-iterator.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/AsyncIterator', () => { diff --git a/test/runtime/value/cast/bigint.ts b/test/runtime/value/cast/bigint.ts index 873fa73..58b1ce6 100644 --- a/test/runtime/value/cast/bigint.ts +++ b/test/runtime/value/cast/bigint.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/BigInt', () => { diff --git a/test/runtime/value/cast/boolean.ts b/test/runtime/value/cast/boolean.ts index cbb9761..826e284 100644 --- a/test/runtime/value/cast/boolean.ts +++ b/test/runtime/value/cast/boolean.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Boolean', () => { diff --git a/test/runtime/value/cast/composite.ts b/test/runtime/value/cast/composite.ts index 1db6d80..32f1eb9 100644 --- a/test/runtime/value/cast/composite.ts +++ b/test/runtime/value/cast/composite.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Composite', () => { diff --git a/test/runtime/value/cast/date.ts b/test/runtime/value/cast/date.ts index e204acf..7a407d3 100644 --- a/test/runtime/value/cast/date.ts +++ b/test/runtime/value/cast/date.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Date', () => { diff --git a/test/runtime/value/cast/enum.ts b/test/runtime/value/cast/enum.ts index 0013e81..b0661e0 100644 --- a/test/runtime/value/cast/enum.ts +++ b/test/runtime/value/cast/enum.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Boolean', () => { diff --git a/test/runtime/value/cast/import.ts b/test/runtime/value/cast/import.ts index 56a5a92..e63d0b1 100644 --- a/test/runtime/value/cast/import.ts +++ b/test/runtime/value/cast/import.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Import', () => { diff --git a/test/runtime/value/cast/integer.ts b/test/runtime/value/cast/integer.ts index 3a5b375..37bb335 100644 --- a/test/runtime/value/cast/integer.ts +++ b/test/runtime/value/cast/integer.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Integer', () => { diff --git a/test/runtime/value/cast/intersect.ts b/test/runtime/value/cast/intersect.ts index bed80df..fa3ae4d 100644 --- a/test/runtime/value/cast/intersect.ts +++ b/test/runtime/value/cast/intersect.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Intersect', () => { diff --git a/test/runtime/value/cast/iterator.ts b/test/runtime/value/cast/iterator.ts index 1486318..d47d344 100644 --- a/test/runtime/value/cast/iterator.ts +++ b/test/runtime/value/cast/iterator.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Iterator', () => { diff --git a/test/runtime/value/cast/keyof.ts b/test/runtime/value/cast/keyof.ts index d0f41da..9fb5387 100644 --- a/test/runtime/value/cast/keyof.ts +++ b/test/runtime/value/cast/keyof.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/KeyOf', () => { diff --git a/test/runtime/value/cast/kind.ts b/test/runtime/value/cast/kind.ts index 42cffc6..2a11414 100644 --- a/test/runtime/value/cast/kind.ts +++ b/test/runtime/value/cast/kind.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type, Kind, TypeRegistry } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type, Kind, TypeRegistry } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Kind', () => { diff --git a/test/runtime/value/cast/literal.ts b/test/runtime/value/cast/literal.ts index 59b3569..e909205 100644 --- a/test/runtime/value/cast/literal.ts +++ b/test/runtime/value/cast/literal.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Literal', () => { diff --git a/test/runtime/value/cast/never.ts b/test/runtime/value/cast/never.ts index eeb782e..9ed0f74 100644 --- a/test/runtime/value/cast/never.ts +++ b/test/runtime/value/cast/never.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Never', () => { diff --git a/test/runtime/value/cast/not.ts b/test/runtime/value/cast/not.ts index d5802e6..a0c3982 100644 --- a/test/runtime/value/cast/not.ts +++ b/test/runtime/value/cast/not.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Not', () => { diff --git a/test/runtime/value/cast/null.ts b/test/runtime/value/cast/null.ts index de1d5a7..9a077d9 100644 --- a/test/runtime/value/cast/null.ts +++ b/test/runtime/value/cast/null.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Null', () => { diff --git a/test/runtime/value/cast/number.ts b/test/runtime/value/cast/number.ts index 882ad64..1c2f2e8 100644 --- a/test/runtime/value/cast/number.ts +++ b/test/runtime/value/cast/number.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Number', () => { diff --git a/test/runtime/value/cast/object.ts b/test/runtime/value/cast/object.ts index 56a0668..34fb946 100644 --- a/test/runtime/value/cast/object.ts +++ b/test/runtime/value/cast/object.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Object', () => { diff --git a/test/runtime/value/cast/record.ts b/test/runtime/value/cast/record.ts index fa6ea9d..8a97bae 100644 --- a/test/runtime/value/cast/record.ts +++ b/test/runtime/value/cast/record.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Record', () => { diff --git a/test/runtime/value/cast/recursive.ts b/test/runtime/value/cast/recursive.ts index cb26160..1f956c3 100644 --- a/test/runtime/value/cast/recursive.ts +++ b/test/runtime/value/cast/recursive.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Recursive', () => { diff --git a/test/runtime/value/cast/regexp.ts b/test/runtime/value/cast/regexp.ts index 6c036fa..0593be4 100644 --- a/test/runtime/value/cast/regexp.ts +++ b/test/runtime/value/cast/regexp.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/RegExp', () => { diff --git a/test/runtime/value/cast/string.ts b/test/runtime/value/cast/string.ts index 24d3fd6..4aa4ae1 100644 --- a/test/runtime/value/cast/string.ts +++ b/test/runtime/value/cast/string.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/String', () => { diff --git a/test/runtime/value/cast/symbol.ts b/test/runtime/value/cast/symbol.ts index 18598e8..45c3ed8 100644 --- a/test/runtime/value/cast/symbol.ts +++ b/test/runtime/value/cast/symbol.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Symbol', () => { diff --git a/test/runtime/value/cast/template-literal.ts b/test/runtime/value/cast/template-literal.ts index dc199e1..3e5ba7e 100644 --- a/test/runtime/value/cast/template-literal.ts +++ b/test/runtime/value/cast/template-literal.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/TemplateLiteral', () => { diff --git a/test/runtime/value/cast/tuple.ts b/test/runtime/value/cast/tuple.ts index 8d30bbe..ef2d3fc 100644 --- a/test/runtime/value/cast/tuple.ts +++ b/test/runtime/value/cast/tuple.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Tuple', () => { diff --git a/test/runtime/value/cast/uint8array.ts b/test/runtime/value/cast/uint8array.ts index 6678cc7..46e86d2 100644 --- a/test/runtime/value/cast/uint8array.ts +++ b/test/runtime/value/cast/uint8array.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Uint8Array', () => { diff --git a/test/runtime/value/cast/undefined.ts b/test/runtime/value/cast/undefined.ts index 8bb23a4..0e09512 100644 --- a/test/runtime/value/cast/undefined.ts +++ b/test/runtime/value/cast/undefined.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Undefined', () => { diff --git a/test/runtime/value/cast/union.ts b/test/runtime/value/cast/union.ts index dcc16ce..62c9d8a 100644 --- a/test/runtime/value/cast/union.ts +++ b/test/runtime/value/cast/union.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Union', () => { diff --git a/test/runtime/value/cast/unknown.ts b/test/runtime/value/cast/unknown.ts index 10058ef..23e056d 100644 --- a/test/runtime/value/cast/unknown.ts +++ b/test/runtime/value/cast/unknown.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Unknown', () => { diff --git a/test/runtime/value/cast/void.ts b/test/runtime/value/cast/void.ts index 3a0dd6f..4f94824 100644 --- a/test/runtime/value/cast/void.ts +++ b/test/runtime/value/cast/void.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/cast/Void', () => { diff --git a/test/runtime/value/check/any.ts b/test/runtime/value/check/any.ts index 302412c..85ec456 100644 --- a/test/runtime/value/check/any.ts +++ b/test/runtime/value/check/any.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Any', () => { diff --git a/test/runtime/value/check/argument.ts b/test/runtime/value/check/argument.ts index 7a49e8b..19e0027 100644 --- a/test/runtime/value/check/argument.ts +++ b/test/runtime/value/check/argument.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Argument', () => { diff --git a/test/runtime/value/check/array.ts b/test/runtime/value/check/array.ts index ee81e41..a13209d 100644 --- a/test/runtime/value/check/array.ts +++ b/test/runtime/value/check/array.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Array', () => { diff --git a/test/runtime/value/check/async-iterator.ts b/test/runtime/value/check/async-iterator.ts index 881f68c..d2f7631 100644 --- a/test/runtime/value/check/async-iterator.ts +++ b/test/runtime/value/check/async-iterator.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/AsyncIterator', () => { diff --git a/test/runtime/value/check/bigint.ts b/test/runtime/value/check/bigint.ts index b253926..a9e6e35 100644 --- a/test/runtime/value/check/bigint.ts +++ b/test/runtime/value/check/bigint.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/BigInt', () => { diff --git a/test/runtime/value/check/boolean.ts b/test/runtime/value/check/boolean.ts index 3eafcf8..b10c94b 100644 --- a/test/runtime/value/check/boolean.ts +++ b/test/runtime/value/check/boolean.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Boolean', () => { diff --git a/test/runtime/value/check/composite.ts b/test/runtime/value/check/composite.ts index 7c12e76..c1e9ffa 100644 --- a/test/runtime/value/check/composite.ts +++ b/test/runtime/value/check/composite.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Composite', () => { diff --git a/test/runtime/value/check/const.ts b/test/runtime/value/check/const.ts index 4b3db9f..dc9b21e 100644 --- a/test/runtime/value/check/const.ts +++ b/test/runtime/value/check/const.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Const', () => { diff --git a/test/runtime/value/check/constructor.ts b/test/runtime/value/check/constructor.ts index ba553e3..556b62b 100644 --- a/test/runtime/value/check/constructor.ts +++ b/test/runtime/value/check/constructor.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Constructor', () => { diff --git a/test/runtime/value/check/date.ts b/test/runtime/value/check/date.ts index fd3cca8..abf7e3a 100644 --- a/test/runtime/value/check/date.ts +++ b/test/runtime/value/check/date.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Date', () => { diff --git a/test/runtime/value/check/enum.ts b/test/runtime/value/check/enum.ts index 34d9612..7815168 100644 --- a/test/runtime/value/check/enum.ts +++ b/test/runtime/value/check/enum.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Enum', () => { diff --git a/test/runtime/value/check/function.ts b/test/runtime/value/check/function.ts index d7842f3..1693c9a 100644 --- a/test/runtime/value/check/function.ts +++ b/test/runtime/value/check/function.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Function', () => { diff --git a/test/runtime/value/check/integer.ts b/test/runtime/value/check/integer.ts index 9344a29..6f37c3a 100644 --- a/test/runtime/value/check/integer.ts +++ b/test/runtime/value/check/integer.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Integer', () => { diff --git a/test/runtime/value/check/intersect.ts b/test/runtime/value/check/intersect.ts index e727f2b..6746cb6 100644 --- a/test/runtime/value/check/intersect.ts +++ b/test/runtime/value/check/intersect.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Intersect', () => { diff --git a/test/runtime/value/check/iterator.ts b/test/runtime/value/check/iterator.ts index 69274d1..d7f94a8 100644 --- a/test/runtime/value/check/iterator.ts +++ b/test/runtime/value/check/iterator.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Iterator', () => { diff --git a/test/runtime/value/check/keyof.ts b/test/runtime/value/check/keyof.ts index a3407c9..703ba75 100644 --- a/test/runtime/value/check/keyof.ts +++ b/test/runtime/value/check/keyof.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/KeyOf', () => { diff --git a/test/runtime/value/check/kind.ts b/test/runtime/value/check/kind.ts index 9a16eed..70b7a17 100644 --- a/test/runtime/value/check/kind.ts +++ b/test/runtime/value/check/kind.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { TypeRegistry, Type, Kind, TSchema } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { TypeRegistry, Type, Kind, TSchema } from '@alkdev/typebox' import { Assert } from '../../assert' describe('value/check/Kind', () => { diff --git a/test/runtime/value/check/literal.ts b/test/runtime/value/check/literal.ts index 4acca45..dd9a97a 100644 --- a/test/runtime/value/check/literal.ts +++ b/test/runtime/value/check/literal.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Literal', () => { diff --git a/test/runtime/value/check/module.ts b/test/runtime/value/check/module.ts index af80b0e..4d5aff1 100644 --- a/test/runtime/value/check/module.ts +++ b/test/runtime/value/check/module.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert' describe('value/check/Module', () => { diff --git a/test/runtime/value/check/never.ts b/test/runtime/value/check/never.ts index 325f189..e8e1ff1 100644 --- a/test/runtime/value/check/never.ts +++ b/test/runtime/value/check/never.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Never', () => { diff --git a/test/runtime/value/check/not.ts b/test/runtime/value/check/not.ts index 866ec40..2e4442f 100644 --- a/test/runtime/value/check/not.ts +++ b/test/runtime/value/check/not.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Not', () => { diff --git a/test/runtime/value/check/null.ts b/test/runtime/value/check/null.ts index 2a92ec8..32928de 100644 --- a/test/runtime/value/check/null.ts +++ b/test/runtime/value/check/null.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Null', () => { diff --git a/test/runtime/value/check/number.ts b/test/runtime/value/check/number.ts index a389099..6c486a7 100644 --- a/test/runtime/value/check/number.ts +++ b/test/runtime/value/check/number.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Number', () => { diff --git a/test/runtime/value/check/object.ts b/test/runtime/value/check/object.ts index fe6b5b7..bd61949 100644 --- a/test/runtime/value/check/object.ts +++ b/test/runtime/value/check/object.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Object', () => { diff --git a/test/runtime/value/check/record.ts b/test/runtime/value/check/record.ts index c4b9c1f..dfe0fae 100644 --- a/test/runtime/value/check/record.ts +++ b/test/runtime/value/check/record.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Record', () => { diff --git a/test/runtime/value/check/recursive.ts b/test/runtime/value/check/recursive.ts index 1b6c60b..c9f5ca7 100644 --- a/test/runtime/value/check/recursive.ts +++ b/test/runtime/value/check/recursive.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Recursive', () => { diff --git a/test/runtime/value/check/ref.ts b/test/runtime/value/check/ref.ts index aa7d76f..3bdf828 100644 --- a/test/runtime/value/check/ref.ts +++ b/test/runtime/value/check/ref.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Ref', () => { diff --git a/test/runtime/value/check/regexp.ts b/test/runtime/value/check/regexp.ts index f259581..96258eb 100644 --- a/test/runtime/value/check/regexp.ts +++ b/test/runtime/value/check/regexp.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/RegExp', () => { diff --git a/test/runtime/value/check/string.ts b/test/runtime/value/check/string.ts index 48a0eb6..523b494 100644 --- a/test/runtime/value/check/string.ts +++ b/test/runtime/value/check/string.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/String', () => { diff --git a/test/runtime/value/check/symbol.ts b/test/runtime/value/check/symbol.ts index ad34281..6bb8eb6 100644 --- a/test/runtime/value/check/symbol.ts +++ b/test/runtime/value/check/symbol.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Symbol', () => { diff --git a/test/runtime/value/check/template-literal.ts b/test/runtime/value/check/template-literal.ts index 0cffa6f..7bea807 100644 --- a/test/runtime/value/check/template-literal.ts +++ b/test/runtime/value/check/template-literal.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/TemplateLiteral', () => { diff --git a/test/runtime/value/check/tuple.ts b/test/runtime/value/check/tuple.ts index 1a9f039..4cc2a33 100644 --- a/test/runtime/value/check/tuple.ts +++ b/test/runtime/value/check/tuple.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Tuple', () => { diff --git a/test/runtime/value/check/uint8array.ts b/test/runtime/value/check/uint8array.ts index c989fa9..665a630 100644 --- a/test/runtime/value/check/uint8array.ts +++ b/test/runtime/value/check/uint8array.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Uint8Array', () => { diff --git a/test/runtime/value/check/undefined.ts b/test/runtime/value/check/undefined.ts index bdc0099..41d2ad5 100644 --- a/test/runtime/value/check/undefined.ts +++ b/test/runtime/value/check/undefined.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Undefined', () => { diff --git a/test/runtime/value/check/union.ts b/test/runtime/value/check/union.ts index c5a31b6..264a711 100644 --- a/test/runtime/value/check/union.ts +++ b/test/runtime/value/check/union.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Union', () => { diff --git a/test/runtime/value/check/unknown.ts b/test/runtime/value/check/unknown.ts index 7026f3d..fe91d11 100644 --- a/test/runtime/value/check/unknown.ts +++ b/test/runtime/value/check/unknown.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Unknown', () => { diff --git a/test/runtime/value/check/void.ts b/test/runtime/value/check/void.ts index 92ff30b..2ef54f5 100644 --- a/test/runtime/value/check/void.ts +++ b/test/runtime/value/check/void.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/check/Void', () => { diff --git a/test/runtime/value/clean/any.ts b/test/runtime/value/clean/any.ts index 9a49a25..e3d0cf5 100644 --- a/test/runtime/value/clean/any.ts +++ b/test/runtime/value/clean/any.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Any', () => { diff --git a/test/runtime/value/clean/array.ts b/test/runtime/value/clean/array.ts index 6e8a218..44bef0b 100644 --- a/test/runtime/value/clean/array.ts +++ b/test/runtime/value/clean/array.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Array', () => { diff --git a/test/runtime/value/clean/async-iterator.ts b/test/runtime/value/clean/async-iterator.ts index a067233..4e8df1c 100644 --- a/test/runtime/value/clean/async-iterator.ts +++ b/test/runtime/value/clean/async-iterator.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/AsyncIterator', () => { diff --git a/test/runtime/value/clean/bigint.ts b/test/runtime/value/clean/bigint.ts index cdd77d4..4862b6c 100644 --- a/test/runtime/value/clean/bigint.ts +++ b/test/runtime/value/clean/bigint.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/BigInt', () => { diff --git a/test/runtime/value/clean/boolean.ts b/test/runtime/value/clean/boolean.ts index 7697d25..76fc1ff 100644 --- a/test/runtime/value/clean/boolean.ts +++ b/test/runtime/value/clean/boolean.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Boolean', () => { diff --git a/test/runtime/value/clean/composite.ts b/test/runtime/value/clean/composite.ts index 035f335..9abbc7e 100644 --- a/test/runtime/value/clean/composite.ts +++ b/test/runtime/value/clean/composite.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Composite', () => { diff --git a/test/runtime/value/clean/constructor.ts b/test/runtime/value/clean/constructor.ts index 4a4be49..f13f834 100644 --- a/test/runtime/value/clean/constructor.ts +++ b/test/runtime/value/clean/constructor.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Constructor', () => { diff --git a/test/runtime/value/clean/date.ts b/test/runtime/value/clean/date.ts index 8f777e4..76e1e81 100644 --- a/test/runtime/value/clean/date.ts +++ b/test/runtime/value/clean/date.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Date', () => { diff --git a/test/runtime/value/clean/enum.ts b/test/runtime/value/clean/enum.ts index 8890204..6121647 100644 --- a/test/runtime/value/clean/enum.ts +++ b/test/runtime/value/clean/enum.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Enum', () => { diff --git a/test/runtime/value/clean/function.ts b/test/runtime/value/clean/function.ts index 2bc5a4e..f50c626 100644 --- a/test/runtime/value/clean/function.ts +++ b/test/runtime/value/clean/function.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Function', () => { diff --git a/test/runtime/value/clean/import.ts b/test/runtime/value/clean/import.ts index 1ccc7c8..0259209 100644 --- a/test/runtime/value/clean/import.ts +++ b/test/runtime/value/clean/import.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Import', () => { diff --git a/test/runtime/value/clean/integer.ts b/test/runtime/value/clean/integer.ts index ff37704..55d74cf 100644 --- a/test/runtime/value/clean/integer.ts +++ b/test/runtime/value/clean/integer.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Integer', () => { diff --git a/test/runtime/value/clean/intersect.ts b/test/runtime/value/clean/intersect.ts index 14f5d52..2c4ad64 100644 --- a/test/runtime/value/clean/intersect.ts +++ b/test/runtime/value/clean/intersect.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' // prettier-ignore diff --git a/test/runtime/value/clean/iterator.ts b/test/runtime/value/clean/iterator.ts index ec19feb..ad6d2dc 100644 --- a/test/runtime/value/clean/iterator.ts +++ b/test/runtime/value/clean/iterator.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Iterator', () => { diff --git a/test/runtime/value/clean/keyof.ts b/test/runtime/value/clean/keyof.ts index 9119129..d737173 100644 --- a/test/runtime/value/clean/keyof.ts +++ b/test/runtime/value/clean/keyof.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/KeyOf', () => { diff --git a/test/runtime/value/clean/kind.ts b/test/runtime/value/clean/kind.ts index 8a4b836..a020fdf 100644 --- a/test/runtime/value/clean/kind.ts +++ b/test/runtime/value/clean/kind.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type, Kind } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type, Kind } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Kind', () => { diff --git a/test/runtime/value/clean/literal.ts b/test/runtime/value/clean/literal.ts index bf424b7..97a66a0 100644 --- a/test/runtime/value/clean/literal.ts +++ b/test/runtime/value/clean/literal.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Literal', () => { diff --git a/test/runtime/value/clean/never.ts b/test/runtime/value/clean/never.ts index 2945598..8752f1c 100644 --- a/test/runtime/value/clean/never.ts +++ b/test/runtime/value/clean/never.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Never', () => { diff --git a/test/runtime/value/clean/not.ts b/test/runtime/value/clean/not.ts index cb60a05..dba982a 100644 --- a/test/runtime/value/clean/not.ts +++ b/test/runtime/value/clean/not.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Not', () => { diff --git a/test/runtime/value/clean/null.ts b/test/runtime/value/clean/null.ts index a52d81a..9a88867 100644 --- a/test/runtime/value/clean/null.ts +++ b/test/runtime/value/clean/null.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Null', () => { diff --git a/test/runtime/value/clean/number.ts b/test/runtime/value/clean/number.ts index aafd930..989dcce 100644 --- a/test/runtime/value/clean/number.ts +++ b/test/runtime/value/clean/number.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Number', () => { diff --git a/test/runtime/value/clean/object.ts b/test/runtime/value/clean/object.ts index 805665a..db4bcf3 100644 --- a/test/runtime/value/clean/object.ts +++ b/test/runtime/value/clean/object.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Object', () => { diff --git a/test/runtime/value/clean/promise.ts b/test/runtime/value/clean/promise.ts index 0d2d7e4..3d890f8 100644 --- a/test/runtime/value/clean/promise.ts +++ b/test/runtime/value/clean/promise.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Promise', () => { diff --git a/test/runtime/value/clean/record.ts b/test/runtime/value/clean/record.ts index 6ef341c..3775414 100644 --- a/test/runtime/value/clean/record.ts +++ b/test/runtime/value/clean/record.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Record', () => { diff --git a/test/runtime/value/clean/recursive.ts b/test/runtime/value/clean/recursive.ts index 1a6bb6e..5574780 100644 --- a/test/runtime/value/clean/recursive.ts +++ b/test/runtime/value/clean/recursive.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Recursive', () => { diff --git a/test/runtime/value/clean/ref.ts b/test/runtime/value/clean/ref.ts index b065561..04d21eb 100644 --- a/test/runtime/value/clean/ref.ts +++ b/test/runtime/value/clean/ref.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Ref', () => { diff --git a/test/runtime/value/clean/regexp.ts b/test/runtime/value/clean/regexp.ts index 6b1d574..73d82b0 100644 --- a/test/runtime/value/clean/regexp.ts +++ b/test/runtime/value/clean/regexp.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/RegExp', () => { diff --git a/test/runtime/value/clean/string.ts b/test/runtime/value/clean/string.ts index aa5d757..e24c691 100644 --- a/test/runtime/value/clean/string.ts +++ b/test/runtime/value/clean/string.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/String', () => { diff --git a/test/runtime/value/clean/symbol.ts b/test/runtime/value/clean/symbol.ts index 62047d2..fc75994 100644 --- a/test/runtime/value/clean/symbol.ts +++ b/test/runtime/value/clean/symbol.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Symbol', () => { diff --git a/test/runtime/value/clean/template-literal.ts b/test/runtime/value/clean/template-literal.ts index f767305..17fab16 100644 --- a/test/runtime/value/clean/template-literal.ts +++ b/test/runtime/value/clean/template-literal.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/TemplateLiteral', () => { diff --git a/test/runtime/value/clean/tuple.ts b/test/runtime/value/clean/tuple.ts index 81618f0..80ff27b 100644 --- a/test/runtime/value/clean/tuple.ts +++ b/test/runtime/value/clean/tuple.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Tuple', () => { diff --git a/test/runtime/value/clean/uint8array.ts b/test/runtime/value/clean/uint8array.ts index 732eb5b..9c406d3 100644 --- a/test/runtime/value/clean/uint8array.ts +++ b/test/runtime/value/clean/uint8array.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Uint8Array', () => { diff --git a/test/runtime/value/clean/undefined.ts b/test/runtime/value/clean/undefined.ts index 4b590c4..f39343c 100644 --- a/test/runtime/value/clean/undefined.ts +++ b/test/runtime/value/clean/undefined.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Undefined', () => { diff --git a/test/runtime/value/clean/union.ts b/test/runtime/value/clean/union.ts index 010bd0c..e4704ac 100644 --- a/test/runtime/value/clean/union.ts +++ b/test/runtime/value/clean/union.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Union', () => { diff --git a/test/runtime/value/clean/unknown.ts b/test/runtime/value/clean/unknown.ts index edba3eb..016a190 100644 --- a/test/runtime/value/clean/unknown.ts +++ b/test/runtime/value/clean/unknown.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Unknown', () => { diff --git a/test/runtime/value/clean/void.ts b/test/runtime/value/clean/void.ts index cd4c20d..556bb78 100644 --- a/test/runtime/value/clean/void.ts +++ b/test/runtime/value/clean/void.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/clean/Void', () => { diff --git a/test/runtime/value/clone/clone.ts b/test/runtime/value/clone/clone.ts index 15ecb1f..e795a85 100644 --- a/test/runtime/value/clone/clone.ts +++ b/test/runtime/value/clone/clone.ts @@ -1,4 +1,4 @@ -import { Value } from '@sinclair/typebox/value' +import { Value } from '@alkdev/typebox/value' import { Assert } from '../../assert/index' describe('value/clone/Clone', () => { diff --git a/test/runtime/value/convert/any.ts b/test/runtime/value/convert/any.ts index 96a6d58..0a0323d 100644 --- a/test/runtime/value/convert/any.ts +++ b/test/runtime/value/convert/any.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Any', () => { diff --git a/test/runtime/value/convert/array.ts b/test/runtime/value/convert/array.ts index 345a556..ccae2d6 100644 --- a/test/runtime/value/convert/array.ts +++ b/test/runtime/value/convert/array.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Array', () => { diff --git a/test/runtime/value/convert/async-iterator.ts b/test/runtime/value/convert/async-iterator.ts index bec76a3..1bf5609 100644 --- a/test/runtime/value/convert/async-iterator.ts +++ b/test/runtime/value/convert/async-iterator.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/AsyncIterator', () => { diff --git a/test/runtime/value/convert/bigint.ts b/test/runtime/value/convert/bigint.ts index 02014a8..f58c4c0 100644 --- a/test/runtime/value/convert/bigint.ts +++ b/test/runtime/value/convert/bigint.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/BigInt', () => { diff --git a/test/runtime/value/convert/boolean.ts b/test/runtime/value/convert/boolean.ts index 8e91f6d..ec4ebe0 100644 --- a/test/runtime/value/convert/boolean.ts +++ b/test/runtime/value/convert/boolean.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Boolean', () => { diff --git a/test/runtime/value/convert/composite.ts b/test/runtime/value/convert/composite.ts index 7114db8..94ef1df 100644 --- a/test/runtime/value/convert/composite.ts +++ b/test/runtime/value/convert/composite.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Composite', () => { diff --git a/test/runtime/value/convert/constructor.ts b/test/runtime/value/convert/constructor.ts index dabd0a2..1cfabc2 100644 --- a/test/runtime/value/convert/constructor.ts +++ b/test/runtime/value/convert/constructor.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Constructor', () => { diff --git a/test/runtime/value/convert/date.ts b/test/runtime/value/convert/date.ts index abe6066..c26cb7b 100644 --- a/test/runtime/value/convert/date.ts +++ b/test/runtime/value/convert/date.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Date', () => { diff --git a/test/runtime/value/convert/enum.ts b/test/runtime/value/convert/enum.ts index a42c758..dd0c120 100644 --- a/test/runtime/value/convert/enum.ts +++ b/test/runtime/value/convert/enum.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Enum', () => { diff --git a/test/runtime/value/convert/function.ts b/test/runtime/value/convert/function.ts index 74e72dd..43548a7 100644 --- a/test/runtime/value/convert/function.ts +++ b/test/runtime/value/convert/function.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Function', () => { diff --git a/test/runtime/value/convert/import.ts b/test/runtime/value/convert/import.ts index f22c506..5f94167 100644 --- a/test/runtime/value/convert/import.ts +++ b/test/runtime/value/convert/import.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' // prettier-ignore diff --git a/test/runtime/value/convert/integer.ts b/test/runtime/value/convert/integer.ts index abfc597..7fbf834 100644 --- a/test/runtime/value/convert/integer.ts +++ b/test/runtime/value/convert/integer.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Integer', () => { diff --git a/test/runtime/value/convert/intersect.ts b/test/runtime/value/convert/intersect.ts index 191150a..6f566ce 100644 --- a/test/runtime/value/convert/intersect.ts +++ b/test/runtime/value/convert/intersect.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Intersect', () => { diff --git a/test/runtime/value/convert/iterator.ts b/test/runtime/value/convert/iterator.ts index 1dbf337..b7a72ab 100644 --- a/test/runtime/value/convert/iterator.ts +++ b/test/runtime/value/convert/iterator.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Iterator', () => { diff --git a/test/runtime/value/convert/keyof.ts b/test/runtime/value/convert/keyof.ts index 5f4141f..b820550 100644 --- a/test/runtime/value/convert/keyof.ts +++ b/test/runtime/value/convert/keyof.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/KeyOf', () => { diff --git a/test/runtime/value/convert/kind.ts b/test/runtime/value/convert/kind.ts index 116178c..8a1591a 100644 --- a/test/runtime/value/convert/kind.ts +++ b/test/runtime/value/convert/kind.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { TypeRegistry, Kind, TSchema } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { TypeRegistry, Kind, TSchema } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Kind', () => { diff --git a/test/runtime/value/convert/literal.ts b/test/runtime/value/convert/literal.ts index c85ac24..31c2f6f 100644 --- a/test/runtime/value/convert/literal.ts +++ b/test/runtime/value/convert/literal.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/LiteralString', () => { diff --git a/test/runtime/value/convert/never.ts b/test/runtime/value/convert/never.ts index f0cea44..11aa7b1 100644 --- a/test/runtime/value/convert/never.ts +++ b/test/runtime/value/convert/never.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Never', () => { diff --git a/test/runtime/value/convert/null.ts b/test/runtime/value/convert/null.ts index f490e8b..f1e2373 100644 --- a/test/runtime/value/convert/null.ts +++ b/test/runtime/value/convert/null.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Null', () => { diff --git a/test/runtime/value/convert/number.ts b/test/runtime/value/convert/number.ts index 8c151db..2ab199f 100644 --- a/test/runtime/value/convert/number.ts +++ b/test/runtime/value/convert/number.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Number', () => { diff --git a/test/runtime/value/convert/object.ts b/test/runtime/value/convert/object.ts index 69a8564..305a295 100644 --- a/test/runtime/value/convert/object.ts +++ b/test/runtime/value/convert/object.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' // prettier-ignore diff --git a/test/runtime/value/convert/promise.ts b/test/runtime/value/convert/promise.ts index 9d04392..247981f 100644 --- a/test/runtime/value/convert/promise.ts +++ b/test/runtime/value/convert/promise.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Promise', () => { diff --git a/test/runtime/value/convert/record.ts b/test/runtime/value/convert/record.ts index edd3b5a..011df98 100644 --- a/test/runtime/value/convert/record.ts +++ b/test/runtime/value/convert/record.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Record', () => { diff --git a/test/runtime/value/convert/recursive.ts b/test/runtime/value/convert/recursive.ts index 5cae252..462860c 100644 --- a/test/runtime/value/convert/recursive.ts +++ b/test/runtime/value/convert/recursive.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Recursive', () => { diff --git a/test/runtime/value/convert/regexp.ts b/test/runtime/value/convert/regexp.ts index c2282b4..38738c0 100644 --- a/test/runtime/value/convert/regexp.ts +++ b/test/runtime/value/convert/regexp.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/RegExp', () => { diff --git a/test/runtime/value/convert/string.ts b/test/runtime/value/convert/string.ts index 5ff0a87..59857d7 100644 --- a/test/runtime/value/convert/string.ts +++ b/test/runtime/value/convert/string.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/String', () => { diff --git a/test/runtime/value/convert/symbol.ts b/test/runtime/value/convert/symbol.ts index 6ef559d..3bccf4a 100644 --- a/test/runtime/value/convert/symbol.ts +++ b/test/runtime/value/convert/symbol.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Symbol', () => { diff --git a/test/runtime/value/convert/tuple.ts b/test/runtime/value/convert/tuple.ts index 663caf0..6479a4f 100644 --- a/test/runtime/value/convert/tuple.ts +++ b/test/runtime/value/convert/tuple.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Tuple', () => { diff --git a/test/runtime/value/convert/uint8array.ts b/test/runtime/value/convert/uint8array.ts index bd6ac1f..52461e3 100644 --- a/test/runtime/value/convert/uint8array.ts +++ b/test/runtime/value/convert/uint8array.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Uint8Array', () => { diff --git a/test/runtime/value/convert/undefined.ts b/test/runtime/value/convert/undefined.ts index 3feab7e..3d65783 100644 --- a/test/runtime/value/convert/undefined.ts +++ b/test/runtime/value/convert/undefined.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Undefined', () => { diff --git a/test/runtime/value/convert/union.ts b/test/runtime/value/convert/union.ts index 03483da..0057972 100644 --- a/test/runtime/value/convert/union.ts +++ b/test/runtime/value/convert/union.ts @@ -1,5 +1,5 @@ -import { Convert, Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Convert, Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Union', () => { diff --git a/test/runtime/value/convert/unknown.ts b/test/runtime/value/convert/unknown.ts index d3ca484..1130d64 100644 --- a/test/runtime/value/convert/unknown.ts +++ b/test/runtime/value/convert/unknown.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Unknown', () => { diff --git a/test/runtime/value/convert/void.ts b/test/runtime/value/convert/void.ts index a977b79..b557dc6 100644 --- a/test/runtime/value/convert/void.ts +++ b/test/runtime/value/convert/void.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/convert/Void', () => { diff --git a/test/runtime/value/create/_deferred.ts b/test/runtime/value/create/_deferred.ts index 6b2a86c..e67e4c8 100644 --- a/test/runtime/value/create/_deferred.ts +++ b/test/runtime/value/create/_deferred.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Deferred', () => { diff --git a/test/runtime/value/create/any.ts b/test/runtime/value/create/any.ts index 44809c7..4219d57 100644 --- a/test/runtime/value/create/any.ts +++ b/test/runtime/value/create/any.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Any', () => { diff --git a/test/runtime/value/create/argument.ts b/test/runtime/value/create/argument.ts index 55bd0de..899f062 100644 --- a/test/runtime/value/create/argument.ts +++ b/test/runtime/value/create/argument.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Argument', () => { diff --git a/test/runtime/value/create/array.ts b/test/runtime/value/create/array.ts index ae042f8..6d2ee1e 100644 --- a/test/runtime/value/create/array.ts +++ b/test/runtime/value/create/array.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Array', () => { diff --git a/test/runtime/value/create/async-iterator.ts b/test/runtime/value/create/async-iterator.ts index da25169..e9c3be5 100644 --- a/test/runtime/value/create/async-iterator.ts +++ b/test/runtime/value/create/async-iterator.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/AsyncIterator', () => { diff --git a/test/runtime/value/create/bigint.ts b/test/runtime/value/create/bigint.ts index 9f53207..fa126af 100644 --- a/test/runtime/value/create/bigint.ts +++ b/test/runtime/value/create/bigint.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/BigInt', () => { diff --git a/test/runtime/value/create/boolean.ts b/test/runtime/value/create/boolean.ts index 28c1c4e..a91c70d 100644 --- a/test/runtime/value/create/boolean.ts +++ b/test/runtime/value/create/boolean.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Boolean', () => { diff --git a/test/runtime/value/create/composite.ts b/test/runtime/value/create/composite.ts index a19f506..f09568a 100644 --- a/test/runtime/value/create/composite.ts +++ b/test/runtime/value/create/composite.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Composite', () => { diff --git a/test/runtime/value/create/constructor.ts b/test/runtime/value/create/constructor.ts index d42dc85..c6be1ba 100644 --- a/test/runtime/value/create/constructor.ts +++ b/test/runtime/value/create/constructor.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Constructor', () => { diff --git a/test/runtime/value/create/date.ts b/test/runtime/value/create/date.ts index 37c12b7..d9f2708 100644 --- a/test/runtime/value/create/date.ts +++ b/test/runtime/value/create/date.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Date', () => { diff --git a/test/runtime/value/create/enum.ts b/test/runtime/value/create/enum.ts index 81acdc6..56a1027 100644 --- a/test/runtime/value/create/enum.ts +++ b/test/runtime/value/create/enum.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Boolean', () => { diff --git a/test/runtime/value/create/function.ts b/test/runtime/value/create/function.ts index 7495bd0..abaa7ac 100644 --- a/test/runtime/value/create/function.ts +++ b/test/runtime/value/create/function.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Function', () => { diff --git a/test/runtime/value/create/import.ts b/test/runtime/value/create/import.ts index b07f96d..b5b7961 100644 --- a/test/runtime/value/create/import.ts +++ b/test/runtime/value/create/import.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Import', () => { diff --git a/test/runtime/value/create/integer.ts b/test/runtime/value/create/integer.ts index f6dc35b..4b85ab1 100644 --- a/test/runtime/value/create/integer.ts +++ b/test/runtime/value/create/integer.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Integer', () => { diff --git a/test/runtime/value/create/intersect.ts b/test/runtime/value/create/intersect.ts index 771e07e..61f2ee5 100644 --- a/test/runtime/value/create/intersect.ts +++ b/test/runtime/value/create/intersect.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Intersect', () => { diff --git a/test/runtime/value/create/iterator.ts b/test/runtime/value/create/iterator.ts index 02ea1c9..4aaeb9d 100644 --- a/test/runtime/value/create/iterator.ts +++ b/test/runtime/value/create/iterator.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Iterator', () => { diff --git a/test/runtime/value/create/keyof.ts b/test/runtime/value/create/keyof.ts index 0f4c33e..87389ce 100644 --- a/test/runtime/value/create/keyof.ts +++ b/test/runtime/value/create/keyof.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/KeyOf', () => { diff --git a/test/runtime/value/create/kind.ts b/test/runtime/value/create/kind.ts index 3bb42d2..fecf39c 100644 --- a/test/runtime/value/create/kind.ts +++ b/test/runtime/value/create/kind.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type, Kind, TypeRegistry } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type, Kind, TypeRegistry } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Kind', () => { diff --git a/test/runtime/value/create/literal.ts b/test/runtime/value/create/literal.ts index 3004dcd..a9684ce 100644 --- a/test/runtime/value/create/literal.ts +++ b/test/runtime/value/create/literal.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Literal', () => { diff --git a/test/runtime/value/create/never.ts b/test/runtime/value/create/never.ts index 55da1ea..82ce1ad 100644 --- a/test/runtime/value/create/never.ts +++ b/test/runtime/value/create/never.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Never', () => { diff --git a/test/runtime/value/create/not.ts b/test/runtime/value/create/not.ts index 70f1ec2..ed86513 100644 --- a/test/runtime/value/create/not.ts +++ b/test/runtime/value/create/not.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Not', () => { diff --git a/test/runtime/value/create/null.ts b/test/runtime/value/create/null.ts index 1c13270..29b68af 100644 --- a/test/runtime/value/create/null.ts +++ b/test/runtime/value/create/null.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Null', () => { diff --git a/test/runtime/value/create/number.ts b/test/runtime/value/create/number.ts index 756c3aa..d767c7a 100644 --- a/test/runtime/value/create/number.ts +++ b/test/runtime/value/create/number.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Number', () => { diff --git a/test/runtime/value/create/object.ts b/test/runtime/value/create/object.ts index e915a14..b83a6c8 100644 --- a/test/runtime/value/create/object.ts +++ b/test/runtime/value/create/object.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Object', () => { diff --git a/test/runtime/value/create/record.ts b/test/runtime/value/create/record.ts index 1a66fcc..5144735 100644 --- a/test/runtime/value/create/record.ts +++ b/test/runtime/value/create/record.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Record', () => { diff --git a/test/runtime/value/create/recursive.ts b/test/runtime/value/create/recursive.ts index 2fb57e9..2ee7eac 100644 --- a/test/runtime/value/create/recursive.ts +++ b/test/runtime/value/create/recursive.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Recursive', () => { diff --git a/test/runtime/value/create/ref.ts b/test/runtime/value/create/ref.ts index 07142c1..c1e3883 100644 --- a/test/runtime/value/create/ref.ts +++ b/test/runtime/value/create/ref.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Ref', () => { diff --git a/test/runtime/value/create/regexp.ts b/test/runtime/value/create/regexp.ts index cc42439..ddd4726 100644 --- a/test/runtime/value/create/regexp.ts +++ b/test/runtime/value/create/regexp.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/RegEx', () => { diff --git a/test/runtime/value/create/string.ts b/test/runtime/value/create/string.ts index 222f031..f4291df 100644 --- a/test/runtime/value/create/string.ts +++ b/test/runtime/value/create/string.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/String', () => { diff --git a/test/runtime/value/create/symbol.ts b/test/runtime/value/create/symbol.ts index 90af86f..5ada440 100644 --- a/test/runtime/value/create/symbol.ts +++ b/test/runtime/value/create/symbol.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Symbol', () => { diff --git a/test/runtime/value/create/template-literal.ts b/test/runtime/value/create/template-literal.ts index ccd9a84..8fe4919 100644 --- a/test/runtime/value/create/template-literal.ts +++ b/test/runtime/value/create/template-literal.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/TemplateLiteral', () => { diff --git a/test/runtime/value/create/tuple.ts b/test/runtime/value/create/tuple.ts index 085296b..f776fd0 100644 --- a/test/runtime/value/create/tuple.ts +++ b/test/runtime/value/create/tuple.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Tuple', () => { diff --git a/test/runtime/value/create/uint8array.ts b/test/runtime/value/create/uint8array.ts index faf044f..4edff03 100644 --- a/test/runtime/value/create/uint8array.ts +++ b/test/runtime/value/create/uint8array.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Uint8Array', () => { diff --git a/test/runtime/value/create/undefined.ts b/test/runtime/value/create/undefined.ts index e2f530e..8683384 100644 --- a/test/runtime/value/create/undefined.ts +++ b/test/runtime/value/create/undefined.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Undefined', () => { diff --git a/test/runtime/value/create/union.ts b/test/runtime/value/create/union.ts index 37da0ab..ef8e82a 100644 --- a/test/runtime/value/create/union.ts +++ b/test/runtime/value/create/union.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Union', () => { diff --git a/test/runtime/value/create/unknown.ts b/test/runtime/value/create/unknown.ts index a67b3ec..c668201 100644 --- a/test/runtime/value/create/unknown.ts +++ b/test/runtime/value/create/unknown.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Unknown', () => { diff --git a/test/runtime/value/create/void.ts b/test/runtime/value/create/void.ts index 1bef388..b10b341 100644 --- a/test/runtime/value/create/void.ts +++ b/test/runtime/value/create/void.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/create/Void', () => { diff --git a/test/runtime/value/default/_deferred.ts b/test/runtime/value/default/_deferred.ts index 1fc77c5..12826a8 100644 --- a/test/runtime/value/default/_deferred.ts +++ b/test/runtime/value/default/_deferred.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Deferred', () => { diff --git a/test/runtime/value/default/any.ts b/test/runtime/value/default/any.ts index 15b12e9..ce7abea 100644 --- a/test/runtime/value/default/any.ts +++ b/test/runtime/value/default/any.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Any', () => { diff --git a/test/runtime/value/default/array.ts b/test/runtime/value/default/array.ts index 602f656..3432750 100644 --- a/test/runtime/value/default/array.ts +++ b/test/runtime/value/default/array.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Array', () => { diff --git a/test/runtime/value/default/async-iterator.ts b/test/runtime/value/default/async-iterator.ts index dd26f57..116aee7 100644 --- a/test/runtime/value/default/async-iterator.ts +++ b/test/runtime/value/default/async-iterator.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/AsyncIterator', () => { diff --git a/test/runtime/value/default/bigint.ts b/test/runtime/value/default/bigint.ts index b7e8aa7..789d8f7 100644 --- a/test/runtime/value/default/bigint.ts +++ b/test/runtime/value/default/bigint.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/BigInt', () => { diff --git a/test/runtime/value/default/boolean.ts b/test/runtime/value/default/boolean.ts index ee05bb0..b82d4e1 100644 --- a/test/runtime/value/default/boolean.ts +++ b/test/runtime/value/default/boolean.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Boolean', () => { diff --git a/test/runtime/value/default/composite.ts b/test/runtime/value/default/composite.ts index 8a73e41..7ee79d7 100644 --- a/test/runtime/value/default/composite.ts +++ b/test/runtime/value/default/composite.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Composite', () => { diff --git a/test/runtime/value/default/constructor.ts b/test/runtime/value/default/constructor.ts index 76cb234..55228fa 100644 --- a/test/runtime/value/default/constructor.ts +++ b/test/runtime/value/default/constructor.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Constructor', () => { diff --git a/test/runtime/value/default/date.ts b/test/runtime/value/default/date.ts index 72b95c0..798ba11 100644 --- a/test/runtime/value/default/date.ts +++ b/test/runtime/value/default/date.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Date', () => { diff --git a/test/runtime/value/default/enum.ts b/test/runtime/value/default/enum.ts index ae6f9ec..994eaab 100644 --- a/test/runtime/value/default/enum.ts +++ b/test/runtime/value/default/enum.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Enum', () => { diff --git a/test/runtime/value/default/function.ts b/test/runtime/value/default/function.ts index 959c282..359edc6 100644 --- a/test/runtime/value/default/function.ts +++ b/test/runtime/value/default/function.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Function', () => { diff --git a/test/runtime/value/default/import.ts b/test/runtime/value/default/import.ts index 42ae356..54ac4e8 100644 --- a/test/runtime/value/default/import.ts +++ b/test/runtime/value/default/import.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type, CloneType } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type, CloneType } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Import', () => { diff --git a/test/runtime/value/default/integer.ts b/test/runtime/value/default/integer.ts index c0ce64b..f29b671 100644 --- a/test/runtime/value/default/integer.ts +++ b/test/runtime/value/default/integer.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Integer', () => { diff --git a/test/runtime/value/default/intersect.ts b/test/runtime/value/default/intersect.ts index 0e72b3e..99e69d8 100644 --- a/test/runtime/value/default/intersect.ts +++ b/test/runtime/value/default/intersect.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Intersect', () => { diff --git a/test/runtime/value/default/iterator.ts b/test/runtime/value/default/iterator.ts index d49b7f2..37dfa3b 100644 --- a/test/runtime/value/default/iterator.ts +++ b/test/runtime/value/default/iterator.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Iterator', () => { diff --git a/test/runtime/value/default/keyof.ts b/test/runtime/value/default/keyof.ts index 2cb0bb2..86fae03 100644 --- a/test/runtime/value/default/keyof.ts +++ b/test/runtime/value/default/keyof.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/KeyOf', () => { diff --git a/test/runtime/value/default/kind.ts b/test/runtime/value/default/kind.ts index 1f8a96f..51f0f69 100644 --- a/test/runtime/value/default/kind.ts +++ b/test/runtime/value/default/kind.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type, Kind } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type, Kind } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Kind', () => { diff --git a/test/runtime/value/default/literal.ts b/test/runtime/value/default/literal.ts index fa01d55..ac7197c 100644 --- a/test/runtime/value/default/literal.ts +++ b/test/runtime/value/default/literal.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Literal', () => { diff --git a/test/runtime/value/default/never.ts b/test/runtime/value/default/never.ts index a395427..c04108b 100644 --- a/test/runtime/value/default/never.ts +++ b/test/runtime/value/default/never.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Never', () => { diff --git a/test/runtime/value/default/not.ts b/test/runtime/value/default/not.ts index 148756d..969e089 100644 --- a/test/runtime/value/default/not.ts +++ b/test/runtime/value/default/not.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Not', () => { diff --git a/test/runtime/value/default/null.ts b/test/runtime/value/default/null.ts index 9246fe8..f1eb764 100644 --- a/test/runtime/value/default/null.ts +++ b/test/runtime/value/default/null.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Null', () => { diff --git a/test/runtime/value/default/number.ts b/test/runtime/value/default/number.ts index 6dcaa70..f6903b5 100644 --- a/test/runtime/value/default/number.ts +++ b/test/runtime/value/default/number.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Number', () => { diff --git a/test/runtime/value/default/object.ts b/test/runtime/value/default/object.ts index 86a7df1..84a2b9d 100644 --- a/test/runtime/value/default/object.ts +++ b/test/runtime/value/default/object.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type, CloneType } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type, CloneType } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Object', () => { diff --git a/test/runtime/value/default/promise.ts b/test/runtime/value/default/promise.ts index 659e052..ef78656 100644 --- a/test/runtime/value/default/promise.ts +++ b/test/runtime/value/default/promise.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Promise', () => { diff --git a/test/runtime/value/default/record.ts b/test/runtime/value/default/record.ts index 4b300dd..680f9a3 100644 --- a/test/runtime/value/default/record.ts +++ b/test/runtime/value/default/record.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Record', () => { diff --git a/test/runtime/value/default/recursive.ts b/test/runtime/value/default/recursive.ts index 492f92d..2d02d71 100644 --- a/test/runtime/value/default/recursive.ts +++ b/test/runtime/value/default/recursive.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { TSchema, Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { TSchema, Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' // prettier-ignore diff --git a/test/runtime/value/default/ref.ts b/test/runtime/value/default/ref.ts index 6340595..c12f68d 100644 --- a/test/runtime/value/default/ref.ts +++ b/test/runtime/value/default/ref.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Ref', () => { diff --git a/test/runtime/value/default/regexp.ts b/test/runtime/value/default/regexp.ts index 9c32c7a..ad96401 100644 --- a/test/runtime/value/default/regexp.ts +++ b/test/runtime/value/default/regexp.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/RegExp', () => { diff --git a/test/runtime/value/default/string.ts b/test/runtime/value/default/string.ts index af83333..8ffbd72 100644 --- a/test/runtime/value/default/string.ts +++ b/test/runtime/value/default/string.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/String', () => { diff --git a/test/runtime/value/default/symbol.ts b/test/runtime/value/default/symbol.ts index d593fb7..c09e956 100644 --- a/test/runtime/value/default/symbol.ts +++ b/test/runtime/value/default/symbol.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Symbol', () => { diff --git a/test/runtime/value/default/template-literal.ts b/test/runtime/value/default/template-literal.ts index 2dd6b7e..1995c7e 100644 --- a/test/runtime/value/default/template-literal.ts +++ b/test/runtime/value/default/template-literal.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/TemplateLiteral', () => { diff --git a/test/runtime/value/default/tuple.ts b/test/runtime/value/default/tuple.ts index c7acdc9..ff7046f 100644 --- a/test/runtime/value/default/tuple.ts +++ b/test/runtime/value/default/tuple.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Tuple', () => { diff --git a/test/runtime/value/default/uint8array.ts b/test/runtime/value/default/uint8array.ts index 5c3cfa7..cf6702d 100644 --- a/test/runtime/value/default/uint8array.ts +++ b/test/runtime/value/default/uint8array.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Uint8Array', () => { diff --git a/test/runtime/value/default/undefined.ts b/test/runtime/value/default/undefined.ts index d622cd1..20a3c39 100644 --- a/test/runtime/value/default/undefined.ts +++ b/test/runtime/value/default/undefined.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Undefined', () => { diff --git a/test/runtime/value/default/union.ts b/test/runtime/value/default/union.ts index 15b3512..7317e93 100644 --- a/test/runtime/value/default/union.ts +++ b/test/runtime/value/default/union.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type, Kind, TypeRegistry } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type, Kind, TypeRegistry } from '@alkdev/typebox' import { Assert } from '../../assert/index' // prettier-ignore diff --git a/test/runtime/value/default/unknown.ts b/test/runtime/value/default/unknown.ts index 9723657..8dfacfe 100644 --- a/test/runtime/value/default/unknown.ts +++ b/test/runtime/value/default/unknown.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Unknown', () => { diff --git a/test/runtime/value/default/void.ts b/test/runtime/value/default/void.ts index 03d03c1..fc8608f 100644 --- a/test/runtime/value/default/void.ts +++ b/test/runtime/value/default/void.ts @@ -1,5 +1,5 @@ -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' import { Assert } from '../../assert/index' describe('value/default/Void', () => { diff --git a/test/runtime/value/delta/diff.ts b/test/runtime/value/delta/diff.ts index 6be662f..bb232a7 100644 --- a/test/runtime/value/delta/diff.ts +++ b/test/runtime/value/delta/diff.ts @@ -1,4 +1,4 @@ -import { Value, Edit } from '@sinclair/typebox/value' +import { Value, Edit } from '@alkdev/typebox/value' import { Assert } from '../../assert/index' // ----------------------------------------------------------------- diff --git a/test/runtime/value/delta/patch.ts b/test/runtime/value/delta/patch.ts index 2addfe5..b9ef9d4 100644 --- a/test/runtime/value/delta/patch.ts +++ b/test/runtime/value/delta/patch.ts @@ -1,4 +1,4 @@ -import { Value } from '@sinclair/typebox/value' +import { Value } from '@alkdev/typebox/value' import { Assert } from '../../assert/index' describe('value/delta/Patch', () => { diff --git a/test/runtime/value/equal/equal.ts b/test/runtime/value/equal/equal.ts index 57382d8..be2336d 100644 --- a/test/runtime/value/equal/equal.ts +++ b/test/runtime/value/equal/equal.ts @@ -1,4 +1,4 @@ -import { Value } from '@sinclair/typebox/value' +import { Value } from '@alkdev/typebox/value' import { Assert } from '../../assert/index' describe('value/equal/Equal', () => { diff --git a/test/runtime/value/guard/guard.ts b/test/runtime/value/guard/guard.ts index 88aaec6..b7cc8eb 100644 --- a/test/runtime/value/guard/guard.ts +++ b/test/runtime/value/guard/guard.ts @@ -1,5 +1,5 @@ import { Assert } from '../../assert/index' -import * as ValueGuard from '@sinclair/typebox/value' +import * as ValueGuard from '@alkdev/typebox/value' describe('value/guard/ValueGuard', () => { // ----------------------------------------------------- diff --git a/test/runtime/value/hash/hash.ts b/test/runtime/value/hash/hash.ts index aceb064..da0c596 100644 --- a/test/runtime/value/hash/hash.ts +++ b/test/runtime/value/hash/hash.ts @@ -1,4 +1,4 @@ -import { Hash } from '@sinclair/typebox/value' +import { Hash } from '@alkdev/typebox/value' import { Assert } from '../../assert/index' describe('value/hash/Hash', () => { diff --git a/test/runtime/value/mutate/mutate.ts b/test/runtime/value/mutate/mutate.ts index db4d656..5c2bd99 100644 --- a/test/runtime/value/mutate/mutate.ts +++ b/test/runtime/value/mutate/mutate.ts @@ -1,4 +1,4 @@ -import { Value } from '@sinclair/typebox/value' +import { Value } from '@alkdev/typebox/value' import { Assert } from '../../assert/index' describe('value/mutate/Mutate', () => { diff --git a/test/runtime/value/parse/parse.ts b/test/runtime/value/parse/parse.ts index 2bf7106..1eef1e4 100644 --- a/test/runtime/value/parse/parse.ts +++ b/test/runtime/value/parse/parse.ts @@ -1,5 +1,5 @@ -import { Value, AssertError, ParseRegistry } from '@sinclair/typebox/value' -import { Type, TypeGuard } from '@sinclair/typebox' +import { Value, AssertError, ParseRegistry } from '@alkdev/typebox/value' +import { Type, TypeGuard } from '@alkdev/typebox' import { Assert } from '../../assert/index' // prettier-ignore diff --git a/test/runtime/value/pointer/pointer.ts b/test/runtime/value/pointer/pointer.ts index d359716..a8b84bf 100644 --- a/test/runtime/value/pointer/pointer.ts +++ b/test/runtime/value/pointer/pointer.ts @@ -1,4 +1,4 @@ -import { ValuePointer } from '@sinclair/typebox/value' +import { ValuePointer } from '@alkdev/typebox/value' import { Assert } from '../../assert/index' describe('value/pointer/Pointer', () => { diff --git a/test/runtime/value/transform/_encoder.ts b/test/runtime/value/transform/_encoder.ts index 22a2b1d..b31603c 100644 --- a/test/runtime/value/transform/_encoder.ts +++ b/test/runtime/value/transform/_encoder.ts @@ -1,7 +1,7 @@ -import { IsAsyncIterator, IsIterator, IsFunction, IsSymbol, IsDate } from '@sinclair/typebox/value' -import { TSchema, StaticDecode, StaticEncode } from '@sinclair/typebox' -import { TypeCompiler } from '@sinclair/typebox/compiler' -import { Value } from '@sinclair/typebox/value' +import { IsAsyncIterator, IsIterator, IsFunction, IsSymbol, IsDate } from '@alkdev/typebox/value' +import { TSchema, StaticDecode, StaticEncode } from '@alkdev/typebox' +import { TypeCompiler } from '@alkdev/typebox/compiler' +import { Value } from '@alkdev/typebox/value' import { Assert } from '../../assert/index' function AssertSame(actual: unknown, expect: unknown) { diff --git a/test/runtime/value/transform/_nested.ts b/test/runtime/value/transform/_nested.ts index 700de2c..2a4d97b 100644 --- a/test/runtime/value/transform/_nested.ts +++ b/test/runtime/value/transform/_nested.ts @@ -1,6 +1,6 @@ import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Nested', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/any.ts b/test/runtime/value/transform/any.ts index a1b27e2..88365f0 100644 --- a/test/runtime/value/transform/any.ts +++ b/test/runtime/value/transform/any.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Any', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/array.ts b/test/runtime/value/transform/array.ts index 8f688b2..86f9be8 100644 --- a/test/runtime/value/transform/array.ts +++ b/test/runtime/value/transform/array.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Array', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/async-iterator.ts b/test/runtime/value/transform/async-iterator.ts index aed1f3e..a8b20a9 100644 --- a/test/runtime/value/transform/async-iterator.ts +++ b/test/runtime/value/transform/async-iterator.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/AsyncIterator', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/bigint.ts b/test/runtime/value/transform/bigint.ts index 280af31..cf88ad7 100644 --- a/test/runtime/value/transform/bigint.ts +++ b/test/runtime/value/transform/bigint.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/BigInt', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/boolean.ts b/test/runtime/value/transform/boolean.ts index ed9c47c..2523aa9 100644 --- a/test/runtime/value/transform/boolean.ts +++ b/test/runtime/value/transform/boolean.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Boolean', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/constructor.ts b/test/runtime/value/transform/constructor.ts index 67ae9d1..1e9c609 100644 --- a/test/runtime/value/transform/constructor.ts +++ b/test/runtime/value/transform/constructor.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Constructor', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/date.ts b/test/runtime/value/transform/date.ts index e81ff7a..89531a2 100644 --- a/test/runtime/value/transform/date.ts +++ b/test/runtime/value/transform/date.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Date', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/enum.ts b/test/runtime/value/transform/enum.ts index b681ae3..bd78efd 100644 --- a/test/runtime/value/transform/enum.ts +++ b/test/runtime/value/transform/enum.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Enum', () => { enum E { diff --git a/test/runtime/value/transform/function.ts b/test/runtime/value/transform/function.ts index 4bd89ab..f652d77 100644 --- a/test/runtime/value/transform/function.ts +++ b/test/runtime/value/transform/function.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Function', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/import.ts b/test/runtime/value/transform/import.ts index 456610f..5035597 100644 --- a/test/runtime/value/transform/import.ts +++ b/test/runtime/value/transform/import.ts @@ -1,9 +1,9 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { TypeSystemPolicy } from '@sinclair/typebox/system' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { TypeSystemPolicy } from '@alkdev/typebox/system' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' // prettier-ignore describe('value/transform/Import', () => { diff --git a/test/runtime/value/transform/integer.ts b/test/runtime/value/transform/integer.ts index 099439a..0528daf 100644 --- a/test/runtime/value/transform/integer.ts +++ b/test/runtime/value/transform/integer.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Integer', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/intersect.ts b/test/runtime/value/transform/intersect.ts index 7e0bcc8..bc64acd 100644 --- a/test/runtime/value/transform/intersect.ts +++ b/test/runtime/value/transform/intersect.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Intersect', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/iterator.ts b/test/runtime/value/transform/iterator.ts index 66188ac..7e49064 100644 --- a/test/runtime/value/transform/iterator.ts +++ b/test/runtime/value/transform/iterator.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Iterator', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/literal.ts b/test/runtime/value/transform/literal.ts index ef88502..c0fbd7d 100644 --- a/test/runtime/value/transform/literal.ts +++ b/test/runtime/value/transform/literal.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Literal', () => { // ----------------------------------------------- diff --git a/test/runtime/value/transform/never.ts b/test/runtime/value/transform/never.ts index 97e0347..2662bcc 100644 --- a/test/runtime/value/transform/never.ts +++ b/test/runtime/value/transform/never.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Never', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/not.ts b/test/runtime/value/transform/not.ts index 68387ee..705e8eb 100644 --- a/test/runtime/value/transform/not.ts +++ b/test/runtime/value/transform/not.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Not', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/null.ts b/test/runtime/value/transform/null.ts index 0cf90dc..348991c 100644 --- a/test/runtime/value/transform/null.ts +++ b/test/runtime/value/transform/null.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Null', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/number.ts b/test/runtime/value/transform/number.ts index 2f06b50..717aaa6 100644 --- a/test/runtime/value/transform/number.ts +++ b/test/runtime/value/transform/number.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Number', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/object.ts b/test/runtime/value/transform/object.ts index 8580201..a25a7d1 100644 --- a/test/runtime/value/transform/object.ts +++ b/test/runtime/value/transform/object.ts @@ -1,9 +1,9 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { TypeSystemPolicy } from '@sinclair/typebox/system' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { TypeSystemPolicy } from '@alkdev/typebox/system' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' // prettier-ignore describe('value/transform/Object', () => { diff --git a/test/runtime/value/transform/promise.ts b/test/runtime/value/transform/promise.ts index 991bf58..e0a335e 100644 --- a/test/runtime/value/transform/promise.ts +++ b/test/runtime/value/transform/promise.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Promise', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/record.ts b/test/runtime/value/transform/record.ts index 6f53ef5..f4833ee 100644 --- a/test/runtime/value/transform/record.ts +++ b/test/runtime/value/transform/record.ts @@ -1,6 +1,6 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' describe('value/transform/Record', () => { // ------------------------------------------------------------ diff --git a/test/runtime/value/transform/recursive.ts b/test/runtime/value/transform/recursive.ts index abea626..f11fc8d 100644 --- a/test/runtime/value/transform/recursive.ts +++ b/test/runtime/value/transform/recursive.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Recursive', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/ref.ts b/test/runtime/value/transform/ref.ts index 39113f4..6ae871c 100644 --- a/test/runtime/value/transform/ref.ts +++ b/test/runtime/value/transform/ref.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Ref', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/string.ts b/test/runtime/value/transform/string.ts index 3419c86..474fa4b 100644 --- a/test/runtime/value/transform/string.ts +++ b/test/runtime/value/transform/string.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/String', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/symbol.ts b/test/runtime/value/transform/symbol.ts index a04a9d6..917ab8d 100644 --- a/test/runtime/value/transform/symbol.ts +++ b/test/runtime/value/transform/symbol.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/String', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/template-literal.ts b/test/runtime/value/transform/template-literal.ts index 3c8130a..a3082c5 100644 --- a/test/runtime/value/transform/template-literal.ts +++ b/test/runtime/value/transform/template-literal.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/TemplateLiteral', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/tuple.ts b/test/runtime/value/transform/tuple.ts index 4b48377..f3e6295 100644 --- a/test/runtime/value/transform/tuple.ts +++ b/test/runtime/value/transform/tuple.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Tuple', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/undefined.ts b/test/runtime/value/transform/undefined.ts index 60c5a4c..3f3e841 100644 --- a/test/runtime/value/transform/undefined.ts +++ b/test/runtime/value/transform/undefined.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Undefined', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/union.ts b/test/runtime/value/transform/union.ts index 4315241..8209a0d 100644 --- a/test/runtime/value/transform/union.ts +++ b/test/runtime/value/transform/union.ts @@ -1,6 +1,6 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' describe('value/transform/Union', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/unknown.ts b/test/runtime/value/transform/unknown.ts index 463980d..ab2ce8c 100644 --- a/test/runtime/value/transform/unknown.ts +++ b/test/runtime/value/transform/unknown.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Unknown', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/unsafe.ts b/test/runtime/value/transform/unsafe.ts index f679e01..964cb97 100644 --- a/test/runtime/value/transform/unsafe.ts +++ b/test/runtime/value/transform/unsafe.ts @@ -1,7 +1,7 @@ import * as Encoder from './_encoder' import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type, Kind, TypeRegistry } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type, Kind, TypeRegistry } from '@alkdev/typebox' describe('value/transform/Unsafe', () => { // -------------------------------------------------------- diff --git a/test/runtime/value/transform/void.ts b/test/runtime/value/transform/void.ts index 16cd872..440d63a 100644 --- a/test/runtime/value/transform/void.ts +++ b/test/runtime/value/transform/void.ts @@ -1,6 +1,6 @@ import { Assert } from '../../assert' -import { Value } from '@sinclair/typebox/value' -import { Type } from '@sinclair/typebox' +import { Value } from '@alkdev/typebox/value' +import { Type } from '@alkdev/typebox' describe('value/transform/Void', () => { // -------------------------------------------------------- diff --git a/test/static/any.ts b/test/static/any.ts index 90b4170..619739e 100644 --- a/test/static/any.ts +++ b/test/static/any.ts @@ -1,4 +1,4 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' Expect(Type.Any()).ToStatic() diff --git a/test/static/argument.ts b/test/static/argument.ts index 588f808..5b9dba0 100644 --- a/test/static/argument.ts +++ b/test/static/argument.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' const T = Type.Object({ x: Type.Argument(0), diff --git a/test/static/array.ts b/test/static/array.ts index 2ec60f3..c8c5cbd 100644 --- a/test/static/array.ts +++ b/test/static/array.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' Expect(Type.Array(Type.String())).ToStatic() diff --git a/test/static/assert.ts b/test/static/assert.ts index 9860869..967d792 100644 --- a/test/static/assert.ts +++ b/test/static/assert.ts @@ -1,4 +1,4 @@ -import { Static, StaticDecode, StaticEncode, TSchema } from '@sinclair/typebox' +import { Static, StaticDecode, StaticEncode, TSchema } from '@alkdev/typebox' // ------------------------------------------------------------------ // Symbols diff --git a/test/static/async-iterator.ts b/test/static/async-iterator.ts index 75364f1..8963c3d 100644 --- a/test/static/async-iterator.ts +++ b/test/static/async-iterator.ts @@ -1,4 +1,4 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' Expect(Type.AsyncIterator(Type.String())).ToStatic>() diff --git a/test/static/awaited.ts b/test/static/awaited.ts index e9c235c..4754cef 100644 --- a/test/static/awaited.ts +++ b/test/static/awaited.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' Expect(Type.Awaited(Type.String())).ToStatic() diff --git a/test/static/bigint.ts b/test/static/bigint.ts index 40c5b90..89ca4c7 100644 --- a/test/static/bigint.ts +++ b/test/static/bigint.ts @@ -1,4 +1,4 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' Expect(Type.BigInt()).ToStatic() diff --git a/test/static/boolean.ts b/test/static/boolean.ts index 9e1b013..9ade22a 100644 --- a/test/static/boolean.ts +++ b/test/static/boolean.ts @@ -1,4 +1,4 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' Expect(Type.Boolean()).ToStatic() diff --git a/test/static/capitalize.ts b/test/static/capitalize.ts index b298220..76dcd88 100644 --- a/test/static/capitalize.ts +++ b/test/static/capitalize.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' Expect(Type.Capitalize(Type.Literal('hello'))).ToStatic<'Hello'>() diff --git a/test/static/composite.ts b/test/static/composite.ts index f124f6d..6ee1d4b 100644 --- a/test/static/composite.ts +++ b/test/static/composite.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type, TOptional, TObject, TUnion, TIntersect, TNumber, TString, TBoolean } from '@sinclair/typebox' +import { Type, TOptional, TObject, TUnion, TIntersect, TNumber, TString, TBoolean } from '@alkdev/typebox' // ---------------------------------------------------------------------------- // Overlapping - Non Varying diff --git a/test/static/const.ts b/test/static/const.ts index d81d0fe..1f5372b 100644 --- a/test/static/const.ts +++ b/test/static/const.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' // ------------------------------------------------------------------ // Identity Types diff --git a/test/static/constructor-parameters.ts b/test/static/constructor-parameters.ts index 43db978..4374f50 100644 --- a/test/static/constructor-parameters.ts +++ b/test/static/constructor-parameters.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' const C = Type.Constructor( [Type.Number(), Type.String()], diff --git a/test/static/constructor.ts b/test/static/constructor.ts index 59e435c..a3d2931 100644 --- a/test/static/constructor.ts +++ b/test/static/constructor.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' { // simple const T = Type.Constructor([Type.Number(), Type.Boolean()], Type.String()) diff --git a/test/static/date.ts b/test/static/date.ts index fe20220..797a0c6 100644 --- a/test/static/date.ts +++ b/test/static/date.ts @@ -1,4 +1,4 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' Expect(Type.Date()).ToStatic() diff --git a/test/static/enum.ts b/test/static/enum.ts index 9818acf..5eee791 100644 --- a/test/static/enum.ts +++ b/test/static/enum.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' { // expect all variants diff --git a/test/static/exclude.ts b/test/static/exclude.ts index a63c6c2..8259ab7 100644 --- a/test/static/exclude.ts +++ b/test/static/exclude.ts @@ -1,4 +1,4 @@ -import { Type, TLiteral, TUnion } from '@sinclair/typebox' +import { Type, TLiteral, TUnion } from '@alkdev/typebox' import { Expect } from './assert' { diff --git a/test/static/extract.ts b/test/static/extract.ts index b9e621e..9965d47 100644 --- a/test/static/extract.ts +++ b/test/static/extract.ts @@ -1,4 +1,4 @@ -import { Type, TLiteral, TUnion } from '@sinclair/typebox' +import { Type, TLiteral, TUnion } from '@alkdev/typebox' import { Expect } from './assert' { diff --git a/test/static/function.ts b/test/static/function.ts index 1ae3404..61357ae 100644 --- a/test/static/function.ts +++ b/test/static/function.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' { // simple diff --git a/test/static/import.ts b/test/static/import.ts index dec8e8e..356cdc2 100644 --- a/test/static/import.ts +++ b/test/static/import.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type, Static } from '@sinclair/typebox' +import { Type, Static } from '@alkdev/typebox' // ------------------------------------------------------------------ // Enum 1 diff --git a/test/static/indexed.ts b/test/static/indexed.ts index fe5875b..f4166ca 100644 --- a/test/static/indexed.ts +++ b/test/static/indexed.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type, Static } from '@sinclair/typebox' +import { Type, Static } from '@alkdev/typebox' { const T = Type.Object({ diff --git a/test/static/intersect.ts b/test/static/intersect.ts index f4fbffb..a0c7af3 100644 --- a/test/static/intersect.ts +++ b/test/static/intersect.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type, Static } from '@sinclair/typebox' +import { Type, Static } from '@alkdev/typebox' { const A = Type.Object({ diff --git a/test/static/iterator.ts b/test/static/iterator.ts index 5727f64..17b9b80 100644 --- a/test/static/iterator.ts +++ b/test/static/iterator.ts @@ -1,4 +1,4 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' Expect(Type.Iterator(Type.String())).ToStatic>() diff --git a/test/static/keyof.ts b/test/static/keyof.ts index 10d21df..b2dc9ed 100644 --- a/test/static/keyof.ts +++ b/test/static/keyof.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' { const K = Type.KeyOf( diff --git a/test/static/literal.ts b/test/static/literal.ts index 8a76ffd..87ab84c 100644 --- a/test/static/literal.ts +++ b/test/static/literal.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' Expect(Type.Literal('hello')).ToStatic<'hello'>() diff --git a/test/static/lowercase.ts b/test/static/lowercase.ts index f04ce5e..101210b 100644 --- a/test/static/lowercase.ts +++ b/test/static/lowercase.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' Expect(Type.Lowercase(Type.Literal('HELLO'))).ToStatic<'hello'>() diff --git a/test/static/mapped.ts b/test/static/mapped.ts index 1b57668..02cfed8 100644 --- a/test/static/mapped.ts +++ b/test/static/mapped.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Static, Type } from '@sinclair/typebox' +import { Static, Type } from '@alkdev/typebox' // prettier-ignore { // Generative diff --git a/test/static/modifier.ts b/test/static/modifier.ts index cb108b6..2c0e38e 100644 --- a/test/static/modifier.ts +++ b/test/static/modifier.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type, TSchema } from '@sinclair/typebox' +import { Type, TSchema } from '@alkdev/typebox' // Asserts combinatory modifiers { diff --git a/test/static/never.ts b/test/static/never.ts index 18dc625..47695e6 100644 --- a/test/static/never.ts +++ b/test/static/never.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' { const T = Type.Never() diff --git a/test/static/not.ts b/test/static/not.ts index 5c95fa0..3b5a683 100644 --- a/test/static/not.ts +++ b/test/static/not.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' { // ------------------------------------------------------------------------- diff --git a/test/static/null.ts b/test/static/null.ts index 50f474b..8a30ef3 100644 --- a/test/static/null.ts +++ b/test/static/null.ts @@ -1,4 +1,4 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' Expect(Type.Null()).ToStatic() diff --git a/test/static/number.ts b/test/static/number.ts index 17a41ee..8110ab8 100644 --- a/test/static/number.ts +++ b/test/static/number.ts @@ -1,4 +1,4 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' Expect(Type.Number()).ToStatic() diff --git a/test/static/object.ts b/test/static/object.ts index e6c6468..cb9a721 100644 --- a/test/static/object.ts +++ b/test/static/object.ts @@ -1,5 +1,5 @@ import { Expect, IsExtendsMutual } from './assert' -import { Type, type TObject, type Static, type TNumber } from '@sinclair/typebox' +import { Type, type TObject, type Static, type TNumber } from '@alkdev/typebox' { const T = Type.Object({ A: Type.String(), diff --git a/test/static/omit.ts b/test/static/omit.ts index 7b1bb56..52455a3 100644 --- a/test/static/omit.ts +++ b/test/static/omit.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type, Static } from '@sinclair/typebox' +import { Type, Static } from '@alkdev/typebox' { const A = Type.Object({ diff --git a/test/static/optional.ts b/test/static/optional.ts index 619930d..dc59a0f 100644 --- a/test/static/optional.ts +++ b/test/static/optional.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type, Static } from '@sinclair/typebox' +import { Type, Static } from '@alkdev/typebox' { const T = Type.Object({ diff --git a/test/static/parameters.ts b/test/static/parameters.ts index 439ee9e..b04e2b9 100644 --- a/test/static/parameters.ts +++ b/test/static/parameters.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' const C = Type.Function( [Type.Number(), Type.String()], diff --git a/test/static/partial.ts b/test/static/partial.ts index 5feacce..ca9508f 100644 --- a/test/static/partial.ts +++ b/test/static/partial.ts @@ -1,6 +1,6 @@ import { Expect } from './assert' -import { Type, Static } from '@sinclair/typebox' -import * as Types from '@sinclair/typebox' +import { Type, Static } from '@alkdev/typebox' +import * as Types from '@alkdev/typebox' { const T = Type.Partial( Type.Object({ diff --git a/test/static/pick.ts b/test/static/pick.ts index 895cdef..1a86b39 100644 --- a/test/static/pick.ts +++ b/test/static/pick.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type, Static } from '@sinclair/typebox' +import { Type, Static } from '@alkdev/typebox' { const A = Type.Object({ diff --git a/test/static/readonly-optional.ts b/test/static/readonly-optional.ts index f51696b..eba3565 100644 --- a/test/static/readonly-optional.ts +++ b/test/static/readonly-optional.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type, TSchema, TReadonlyOptional } from '@sinclair/typebox' +import { Type, TSchema, TReadonlyOptional } from '@alkdev/typebox' { const T = Type.Object({ diff --git a/test/static/readonly.ts b/test/static/readonly.ts index 1d6224f..0d2d40f 100644 --- a/test/static/readonly.ts +++ b/test/static/readonly.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type, Static } from '@sinclair/typebox' +import { Type, Static } from '@alkdev/typebox' { const T = Type.Object({ diff --git a/test/static/record.ts b/test/static/record.ts index df66a81..59fb8c1 100644 --- a/test/static/record.ts +++ b/test/static/record.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type, Static } from '@sinclair/typebox' +import { Type, Static } from '@alkdev/typebox' { // type K = string const K = Type.String() diff --git a/test/static/recursive.ts b/test/static/recursive.ts index 3c4cc9a..0f70ee5 100644 --- a/test/static/recursive.ts +++ b/test/static/recursive.ts @@ -1,4 +1,4 @@ -import { Static, Type } from '@sinclair/typebox' +import { Static, Type } from '@alkdev/typebox' import { Expect } from './assert' { diff --git a/test/static/ref.ts b/test/static/ref.ts index 76aca67..6c78df1 100644 --- a/test/static/ref.ts +++ b/test/static/ref.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type, Static } from '@sinclair/typebox' +import { Type, Static } from '@alkdev/typebox' { const T = Type.String({ $id: 'T' }) diff --git a/test/static/regexp.ts b/test/static/regexp.ts index 7f94130..ec6e028 100644 --- a/test/static/regexp.ts +++ b/test/static/regexp.ts @@ -1,4 +1,4 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' Expect(Type.RegExp(/foo/)).ToStatic() diff --git a/test/static/required.ts b/test/static/required.ts index 47c7a3b..8f20c61 100644 --- a/test/static/required.ts +++ b/test/static/required.ts @@ -1,6 +1,6 @@ import { Expect } from './assert' -import { Type, Static } from '@sinclair/typebox' -import * as Types from '@sinclair/typebox' +import { Type, Static } from '@alkdev/typebox' +import * as Types from '@alkdev/typebox' { const T = Type.Required( Type.Object({ diff --git a/test/static/rest.ts b/test/static/rest.ts index 0d364a4..6a0df14 100644 --- a/test/static/rest.ts +++ b/test/static/rest.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type, Static } from '@sinclair/typebox' +import { Type, Static } from '@alkdev/typebox' { // union never const A = Type.String() diff --git a/test/static/return-type.ts b/test/static/return-type.ts index aa46350..dad3311 100644 --- a/test/static/return-type.ts +++ b/test/static/return-type.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type, Static } from '@sinclair/typebox' +import { Type, Static } from '@alkdev/typebox' { const T = Type.ReturnType(Type.Function([], Type.String())) diff --git a/test/static/string.ts b/test/static/string.ts index 609dad5..242edc0 100644 --- a/test/static/string.ts +++ b/test/static/string.ts @@ -1,4 +1,4 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' Expect(Type.String()).ToStatic() diff --git a/test/static/symbol.ts b/test/static/symbol.ts index 13c8c6a..4dd27bd 100644 --- a/test/static/symbol.ts +++ b/test/static/symbol.ts @@ -1,4 +1,4 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' Expect(Type.Symbol()).ToStatic() diff --git a/test/static/syntax.ts b/test/static/syntax.ts index 7b0a846..d457a7b 100644 --- a/test/static/syntax.ts +++ b/test/static/syntax.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Syntax } from '@sinclair/typebox/syntax' +import { Syntax } from '@alkdev/typebox/syntax' // prettier-ignore { diff --git a/test/static/template-literal.ts b/test/static/template-literal.ts index 574d0e9..886fc99 100644 --- a/test/static/template-literal.ts +++ b/test/static/template-literal.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' { // Empty diff --git a/test/static/transform.ts b/test/static/transform.ts index e9dbc21..d53b727 100644 --- a/test/static/transform.ts +++ b/test/static/transform.ts @@ -1,6 +1,6 @@ -import { Type, TSchema, Static, StaticDecode, TObject, TNumber } from '@sinclair/typebox' -import { TypeCheck } from '@sinclair/typebox/compiler' -import { Value } from '@sinclair/typebox/value' +import { Type, TSchema, Static, StaticDecode, TObject, TNumber } from '@alkdev/typebox' +import { TypeCheck } from '@alkdev/typebox/compiler' +import { Value } from '@alkdev/typebox/value' import { Expect } from './assert' { diff --git a/test/static/tuple.ts b/test/static/tuple.ts index 61fde98..32c6f0a 100644 --- a/test/static/tuple.ts +++ b/test/static/tuple.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type, Static } from '@sinclair/typebox' +import { Type, Static } from '@alkdev/typebox' { const T = Type.Tuple([Type.Number(), Type.String(), Type.Boolean()]) diff --git a/test/static/uncapitalize.ts b/test/static/uncapitalize.ts index 226504b..efedd20 100644 --- a/test/static/uncapitalize.ts +++ b/test/static/uncapitalize.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' Expect(Type.Uncapitalize(Type.Literal('HELLO'))).ToStatic<'hELLO'>() diff --git a/test/static/union.ts b/test/static/union.ts index 3decc9e..72caee8 100644 --- a/test/static/union.ts +++ b/test/static/union.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type, Static } from '@sinclair/typebox' +import { Type, Static } from '@alkdev/typebox' { const A = Type.String() diff --git a/test/static/unknown.ts b/test/static/unknown.ts index 0ff2e5d..2350ad6 100644 --- a/test/static/unknown.ts +++ b/test/static/unknown.ts @@ -1,4 +1,4 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' Expect(Type.Unknown()).ToStatic() diff --git a/test/static/uppercase.ts b/test/static/uppercase.ts index 2341fea..4aa1464 100644 --- a/test/static/uppercase.ts +++ b/test/static/uppercase.ts @@ -1,5 +1,5 @@ import { Expect } from './assert' -import { Type } from '@sinclair/typebox' +import { Type } from '@alkdev/typebox' Expect(Type.Uppercase(Type.Literal('hello'))).ToStatic<'HELLO'>() diff --git a/tsconfig.json b/tsconfig.json index 765547b..31a1116 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,14 +5,14 @@ "module": "Node16", "moduleResolution": "Node16", "paths": { - "@sinclair/typebox/compiler": ["./src/compiler/index.ts"], - "@sinclair/typebox/errors": ["./src/errors/index.ts"], - "@sinclair/typebox/parser": ["./src/parser/index.ts"], - "@sinclair/typebox/syntax": ["./src/syntax/index.ts"], - "@sinclair/typebox/system": ["./src/system/index.ts"], - "@sinclair/typebox/type": ["./src/type/index.ts"], - "@sinclair/typebox/value": ["./src/value/index.ts"], - "@sinclair/typebox": ["./src/index.ts"], + "@alkdev/typebox/compiler": ["./src/compiler/index.ts"], + "@alkdev/typebox/errors": ["./src/errors/index.ts"], + "@alkdev/typebox/parser": ["./src/parser/index.ts"], + "@alkdev/typebox/syntax": ["./src/syntax/index.ts"], + "@alkdev/typebox/system": ["./src/system/index.ts"], + "@alkdev/typebox/type": ["./src/type/index.ts"], + "@alkdev/typebox/value": ["./src/value/index.ts"], + "@alkdev/typebox": ["./src/index.ts"], } } } \ No newline at end of file diff --git a/typebox.png b/typebox.png deleted file mode 100644 index d38acd1..0000000 Binary files a/typebox.png and /dev/null differ