@muhammedaksam/opentui-doom 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 CHANGED
@@ -15,7 +15,15 @@
15
15
  - **Emscripten SDK** - For compiling DOOM to WebAssembly
16
16
  - **DOOM WAD file** - Game data (shareware `doom1.wad` is freely available)
17
17
 
18
- ## 🚀 Quick Start
18
+ ## Quick Play (via npm)
19
+
20
+ If you have [Bun](https://bun.sh/) installed, just download a [doom1.wad](https://distro.ibiblio.org/slitaz/sources/packages/d/doom1.wad) and run:
21
+
22
+ ```bash
23
+ bunx @muhammedaksam/opentui-doom --wad ./doom1.wad
24
+ ```
25
+
26
+ ## 🚀 Quick Start (Development)
19
27
 
20
28
  ### 1. Clone the Repository
21
29
 
@@ -46,7 +54,7 @@ This clones [doomgeneric](https://github.com/ozkl/doomgeneric) and compiles it t
46
54
  ### 4. Get a WAD File
47
55
 
48
56
  Download the shareware DOOM WAD:
49
- - [doom1.wad from ibiblio](https://distro.ibiblio.org/slitaz/sources/packages/d/doom-wad/)
57
+ - [doom1.wad from ibiblio](https://distro.ibiblio.org/slitaz/sources/packages/d/doom1.wad)
50
58
  - Or use your own `DOOM.WAD` / `DOOM2.WAD`
51
59
 
52
60
  Place the WAD file in the project root.
@@ -134,4 +142,4 @@ opentui-doom/
134
142
 
135
143
  ## 🤝 Contributing
136
144
 
137
- Contributions are welcome! Feel free to open issues or submit pull requests.
145
+ Contributions are welcome! Please submit pull requests to the `develop` branch.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muhammedaksam/opentui-doom",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Play DOOM in your terminal using OpenTUI's framebuffer rendering and doomgeneric WASM",
5
5
  "module": "src/index.ts",
6
6
  "type": "module",
package/src/index.ts CHANGED
@@ -141,7 +141,7 @@ async function initDoom() {
141
141
  " bun run dev -- --wad /path/to/doom1.wad",
142
142
  "",
143
143
  "3. Download shareware WAD from:",
144
- " https://distro.ibiblio.org/slitaz/sources/packages/d/doom-wad/",
144
+ " https://distro.ibiblio.org/slitaz/sources/packages/d/doom1.wad",
145
145
  ].join("\n"),
146
146
  position: "absolute",
147
147
  left: 2,