@chkit/codegen 0.1.0-beta.5 → 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.
- package/README.md +25 -0
- package/package.json +8 -2
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# @chkit/codegen
|
|
2
|
+
|
|
3
|
+
TypeScript type generation engine used internally by chkit.
|
|
4
|
+
|
|
5
|
+
Part of the [chkit](https://github.com/obsessiondb/chkit) monorepo.
|
|
6
|
+
|
|
7
|
+
> **Note:** This is an internal package. To generate TypeScript types from your schema, use `@chkit/plugin-codegen` or run `bunx chkit codegen`.
|
|
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
|
+
|
|
19
|
+
## Documentation
|
|
20
|
+
|
|
21
|
+
See the [chkit documentation](https://chkit.obsessiondb.com).
|
|
22
|
+
|
|
23
|
+
## License
|
|
24
|
+
|
|
25
|
+
[MIT](../../LICENSE)
|
package/package.json
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chkit/codegen",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
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.
|
|
32
|
+
"@chkit/core": "0.1.0-beta.7"
|
|
27
33
|
}
|
|
28
34
|
}
|