mercuria 0.2.0 → 0.3.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 CHANGED
@@ -1,36 +1,3 @@
1
- # Mercuria
1
+ # Blank Package
2
2
 
3
- Mercuria is a world engine: a minimal static shell, a low-friction Node harness, and a CLI that can transform structured ranges into a live terrain for operational intelligence.
4
-
5
- ## What ships
6
-
7
- - `mercuria build` compacts an NHFN-style range into a smaller world file for the static app.
8
- - `mercuria harness` serves the app and exposes a local API and event stream from one VPS-friendly process.
9
- - `app/` is the static Netlify shell.
10
- - `src/harness.mjs` is the embeddable runtime surface exported by the package.
11
-
12
- ## Quickstart
13
-
14
- ```bash
15
- npm install -g mercuria
16
- mercuria harness --world ./app/data/world.json --site-dir ./app --port 4177
17
- ```
18
-
19
- ## Build a world file
20
-
21
- ```bash
22
- mercuria build \
23
- --source /root/first-nations-dashboard-netlify/web/data/compiled/dashboard_dataset.json \
24
- --out ./app/data/world.json
25
- ```
26
-
27
- ## Commands
28
-
29
- - `mercuria build`
30
- - `mercuria harness`
31
- - `mercuria serve`
32
- - `mercuria command "show food gaps"`
33
-
34
- ## Deploy
35
-
36
- The repository is set up as a static Netlify site with `app/` as the publish directory.
3
+ This package was intentionally reset to a blank placeholder.
package/bin/mercuria.js CHANGED
@@ -1,8 +1,3 @@
1
1
  #!/usr/bin/env node
2
-
3
- import { main } from "../src/cli.mjs";
4
-
5
- main(process.argv.slice(2)).catch((error) => {
6
- console.error(error?.stack || String(error));
7
- process.exitCode = 1;
8
- });
2
+ console.error('This package has been intentionally blanked.');
3
+ process.exit(1);
package/index.js ADDED
@@ -0,0 +1 @@
1
+ export default null;
package/package.json CHANGED
@@ -1,53 +1,16 @@
1
1
  {
2
2
  "name": "mercuria",
3
- "version": "0.2.0",
4
- "description": "Mercuria world engine CLI and harness.",
3
+ "version": "0.3.1",
4
+ "description": "Intentionally blanked package placeholder.",
5
+ "license": "UNLICENSED",
5
6
  "type": "module",
6
7
  "bin": {
7
8
  "mercuria": "./bin/mercuria.js"
8
9
  },
9
- "exports": {
10
- ".": "./src/index.mjs",
11
- "./harness": "./src/harness.mjs",
12
- "./package.json": "./package.json"
13
- },
14
10
  "files": [
15
- "app",
16
11
  "bin",
17
- "src",
18
- "scripts",
19
- "README.md",
20
- "netlify.toml"
21
- ],
22
- "scripts": {
23
- "build:range": "node ./bin/mercuria.js build --source /root/first-nations-dashboard-netlify/web/data/compiled/dashboard_dataset.json --out ./app/data/world.json",
24
- "harness": "node ./bin/mercuria.js harness",
25
- "serve": "node ./bin/mercuria.js harness",
26
- "verify:local": "node ./tests/verify-site.mjs http://127.0.0.1:4177",
27
- "verify:live": "node ./tests/verify-site.mjs https://nfndashboard.netlify.app"
28
- },
29
- "keywords": [
30
- "cli",
31
- "dashboard",
32
- "graph",
33
- "harness",
34
- "intelligence",
35
- "mercuria"
12
+ "index.js",
13
+ "README.md"
36
14
  ],
37
- "repository": {
38
- "type": "git",
39
- "url": "git+https://github.com/lmtlssss/mercuria.git"
40
- },
41
- "bugs": {
42
- "url": "https://github.com/lmtlssss/mercuria/issues"
43
- },
44
- "homepage": "https://github.com/lmtlssss/mercuria#readme",
45
- "author": "lmtlssss",
46
- "license": "MIT",
47
- "engines": {
48
- "node": ">=20"
49
- },
50
- "devDependencies": {
51
- "playwright": "^1.58.2"
52
- }
15
+ "keywords": []
53
16
  }