gameweave 0.1.0
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/LICENSE +19 -0
- package/README.md +33 -0
- package/bin/gameweave.js +22456 -0
- package/package.json +36 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Copyright (c) 2024-2026 Gameweave. All rights reserved.
|
|
2
|
+
|
|
3
|
+
This software and associated documentation files (the "Software") are the
|
|
4
|
+
proprietary property of Gameweave. No part of this Software may be reproduced,
|
|
5
|
+
distributed, transmitted, displayed, published, or broadcast in any form or by
|
|
6
|
+
any means without the prior written permission of Gameweave.
|
|
7
|
+
|
|
8
|
+
Unauthorized copying, modification, merger, publication, distribution,
|
|
9
|
+
sublicensing, sale, or any other use of this Software, in whole or in part,
|
|
10
|
+
is strictly prohibited.
|
|
11
|
+
|
|
12
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
13
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
14
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
15
|
+
GAMEWEAVE BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
16
|
+
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
17
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
18
|
+
|
|
19
|
+
For licensing inquiries, contact: legal@gameweave.com
|
package/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# gameweave
|
|
2
|
+
|
|
3
|
+
The Gameweave command-line tool for working with **boardlang** packages — the
|
|
4
|
+
HCL-like DSL for defining board games as structured, machine-readable specs.
|
|
5
|
+
|
|
6
|
+
## Install
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
npm install -g gameweave
|
|
10
|
+
# or run without installing
|
|
11
|
+
npx gameweave --help
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
gameweave pack [directory] # Pack a boardlang package into a .bfpkg tarball
|
|
18
|
+
gameweave validate [directory] # Validate a boardlang package (compile check)
|
|
19
|
+
gameweave publish [target] --registry <url> --token <token> # Publish to a registry
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Run `gameweave <command> --help` for the options of any command.
|
|
23
|
+
|
|
24
|
+
## Notes
|
|
25
|
+
|
|
26
|
+
This package is published from the [gameweave monorepo](https://github.com/gameweave/gameweave)
|
|
27
|
+
as a single self-contained bundle: its internal `@gameweave/*` dependencies are
|
|
28
|
+
inlined at build time, so installing `gameweave` pulls in only its third-party
|
|
29
|
+
runtime dependencies.
|
|
30
|
+
|
|
31
|
+
## License
|
|
32
|
+
|
|
33
|
+
See [LICENSE](./LICENSE).
|