@dreamboard-games/workspace-codegen 0.1.0 → 0.1.2
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 +15 -0
- package/package.json +3 -3
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# @dreamboard-games/workspace-codegen
|
|
2
|
+
|
|
3
|
+
Dreamboard workspace source generator used by the CLI.
|
|
4
|
+
|
|
5
|
+
This package is published as `@dreamboard-games/workspace-codegen`. It is
|
|
6
|
+
primarily consumed by the `dreamboard` CLI and may be installed through the npm
|
|
7
|
+
alias `@dreamboard/workspace-codegen`.
|
|
8
|
+
|
|
9
|
+
## Role
|
|
10
|
+
|
|
11
|
+
`workspace-codegen` turns a Dreamboard manifest into generated workspace
|
|
12
|
+
contracts, typed UI aliases, manifest helper modules, and seed source files.
|
|
13
|
+
Authored game code should usually depend on the generated output and public SDK
|
|
14
|
+
packages rather than calling this package directly.
|
|
15
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dreamboard-games/workspace-codegen",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Internal Dreamboard workspace source generator",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"test:unit": "bun test --timeout 30000"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@dreamboard/sdk-types": "npm:@dreamboard-games/sdk-types@0.1.
|
|
24
|
-
"@dreamboard/ui-sdk": "npm:@dreamboard-games/ui-sdk@0.0.
|
|
23
|
+
"@dreamboard/sdk-types": "npm:@dreamboard-games/sdk-types@0.1.2",
|
|
24
|
+
"@dreamboard/ui-sdk": "npm:@dreamboard-games/ui-sdk@0.0.43"
|
|
25
25
|
},
|
|
26
26
|
"license": "SEE LICENSE IN LICENSE",
|
|
27
27
|
"publishConfig": {
|