@chkit/codegen 0.1.0-beta.6 → 0.1.0-beta.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +10 -0
  2. package/package.json +8 -2
package/README.md CHANGED
@@ -6,6 +6,16 @@ Part of the [chkit](https://github.com/obsessiondb/chkit) monorepo.
6
6
 
7
7
  > **Note:** This is an internal package. To generate TypeScript types from your schema, use `@chkit/plugin-codegen` or run `bunx chkit codegen`.
8
8
 
9
+ ## Getting Started
10
+
11
+ To get started with chkit, install the CLI:
12
+
13
+ ```bash
14
+ bun add -d chkit
15
+ ```
16
+
17
+ See the [`chkit` CLI package](https://www.npmjs.com/package/chkit) for usage instructions.
18
+
9
19
  ## Documentation
10
20
 
11
21
  See the [chkit documentation](https://chkit.obsessiondb.com).
package/package.json CHANGED
@@ -1,6 +1,12 @@
1
1
  {
2
2
  "name": "@chkit/codegen",
3
- "version": "0.1.0-beta.6",
3
+ "version": "0.1.0-beta.7",
4
+ "homepage": "https://chkit.obsessiondb.com",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/obsessiondb/chkit.git",
8
+ "directory": "packages/codegen"
9
+ },
4
10
  "type": "module",
5
11
  "main": "./dist/index.js",
6
12
  "types": "./dist/index.d.ts",
@@ -23,6 +29,6 @@
23
29
  "clean": "rm -rf dist"
24
30
  },
25
31
  "dependencies": {
26
- "@chkit/core": "0.1.0-beta.6"
32
+ "@chkit/core": "0.1.0-beta.7"
27
33
  }
28
34
  }