@muhammedaksam/opentui-doom 0.1.0 → 0.1.1
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 +11 -3
- package/package.json +1 -1
- package/src/index.ts +1 -1
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
|
-
##
|
|
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/
|
|
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!
|
|
145
|
+
Contributions are welcome! Please submit pull requests to the `develop` branch.
|
package/package.json
CHANGED
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/
|
|
144
|
+
" https://distro.ibiblio.org/slitaz/sources/packages/d/doom1.wad",
|
|
145
145
|
].join("\n"),
|
|
146
146
|
position: "absolute",
|
|
147
147
|
left: 2,
|