@siglum/engine 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.
Files changed (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Siglum
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/@siglum/engine)](https://www.npmjs.com/package/@siglum/engine)
4
+ [![license](https://img.shields.io/npm/l/@siglum/engine)](https://github.com/SiglumProject/siglum-engine/blob/main/LICENSE)
5
+
3
6
  A browser-based LaTeX compiler. TeX Live 2025 running in WebAssembly, with lazy bundle loading and on-demand package fetching.
4
7
 
5
8
  On initialization, the engine downloads:
@@ -18,6 +21,14 @@ The full bundle is ~195MB to deploy, but clients only download what their docume
18
21
 
19
22
  Clone the repo, download the WASM engine and pre-built bundles from [cdn.siglum.org](https://cdn.siglum.org) (or [GitHub Releases](https://github.com/SiglumProject/siglum-engine/releases)), then start the dev server.
20
23
 
24
+ We use [Bun](https://bun.sh) for development, it's faster than Node.js and runs TypeScript directly. Install it with:
25
+
26
+ ```bash
27
+ curl -fsSL https://bun.sh/install | bash
28
+ ```
29
+
30
+ Then:
31
+
21
32
  ```bash
22
33
  git clone git@github.com:SiglumProject/siglum-engine.git
23
34
  cd siglum-engine
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@siglum/engine",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A browser-based LaTeX compiler. TeX Live 2025 running in WebAssembly, with lazy bundle loading and on-demand package fetching.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",