@its-not-rocket-science/ananke 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/CHANGELOG.md +28 -0
- package/README.md +421 -2199
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.js +2 -0
- package/dist/src/scenario.d.ts +37 -0
- package/dist/src/scenario.js +109 -0
- package/dist/src/world-factory.d.ts +33 -0
- package/dist/src/world-factory.js +132 -0
- package/docs/bridge-contract.md +332 -0
- package/docs/emergent-validation-report.md +209 -0
- package/docs/host-contract.md +310 -0
- package/docs/integration-primer.md +315 -0
- package/docs/performance.md +233 -0
- package/docs/project-overview.md +2227 -0
- package/docs/versioning.md +181 -0
- package/package.json +8 -1
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,34 @@ Versioning follows [Semantic Versioning](https://semver.org/).
|
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
13
|
+
## [0.1.2] — 2026-03-19
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
- `createWorld(seed, entities)` — Tier-1 convenience factory; builds a `WorldState` from
|
|
18
|
+
`EntitySpec[]` (archetype, weapon, armour string IDs) without manual entity construction
|
|
19
|
+
- `loadScenario(json)` / `validateScenario(json)` — JSON-driven world creation for
|
|
20
|
+
non-TypeScript consumers (Godot GDScript, Unity C#, scenario files)
|
|
21
|
+
- `ARCHETYPE_MAP` — `ReadonlyMap` of all 21 built-in archetypes (7 base + 14 species)
|
|
22
|
+
- `ITEM_MAP` — `ReadonlyMap` of all historical and starter weapons/armour
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## [0.1.1] — 2026-03-19
|
|
27
|
+
|
|
28
|
+
### Documentation
|
|
29
|
+
|
|
30
|
+
- Replace root `README.md` with a focused programmer's guide (installation, three
|
|
31
|
+
quick-start examples, core concepts, command reference, determinism rules, replay,
|
|
32
|
+
bridge, API tier table, TypeScript types, performance guidance)
|
|
33
|
+
- Preserve full original README as `docs/project-overview.md`
|
|
34
|
+
- Publish `docs/` reference suite in npm tarball: host-contract, integration-primer,
|
|
35
|
+
bridge-contract, performance, versioning, emergent-validation-report, project-overview
|
|
36
|
+
- Mark Platform Hardening PH-1 through PH-8 complete in ROADMAP
|
|
37
|
+
- Mark CE-1 (npm publish) complete; package published as `@its-not-rocket-science/ananke`
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
13
41
|
## [0.1.0] — 2026-03-18
|
|
14
42
|
|
|
15
43
|
Initial published release. All simulation layers (2–6) complete.
|