@cynodia/axiom-core 0.17.0-alpha.1 → 1.0.0

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
@@ -3,7 +3,7 @@
3
3
  Part of [Axiom](https://github.com/cynodia/axiom), an AI-native semantic web application
4
4
  framework.
5
5
 
6
- **Status: experimental / alpha.** The API may change between alpha releases.
6
+ **Status: stable (1.0.0).** The public API and portable semantics follow the 1.x compatibility policy (`docs/COMPATIBILITY.md`, shipped in @cynodia/axiom).
7
7
 
8
8
  The Application Graph and its semantic model: nodes, fields, structured types,
9
9
  expressions, **locations** (addressable writable positions), edge derivation, validation
package/dist/graph.js CHANGED
@@ -23,7 +23,7 @@ export class ApplicationGraph {
23
23
  /** Bumped by every change, so the derived edge index can never serve stale data. */
24
24
  revision = 0;
25
25
  semanticIndex;
26
- constructor(id, name, version = '0.17.0') {
26
+ constructor(id, name, version = '1.0.0') {
27
27
  this.data = { id, name, version, nodes: {}, edges: {} };
28
28
  }
29
29
  get id() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cynodia/axiom-core",
3
- "version": "0.17.0-alpha.1",
3
+ "version": "1.0.0",
4
4
  "description": "Application Graph, semantic types, locations and validation for Axiom.",
5
5
  "license": "MIT",
6
6
  "author": "AskTech AS",
@@ -33,5 +33,8 @@
33
33
  "scripts": {
34
34
  "build": "tsc -b tsconfig.json tsconfig.test.json",
35
35
  "test": "node --test dist-test/**/*.test.js"
36
+ },
37
+ "engines": {
38
+ "node": ">=22.0.0"
36
39
  }
37
40
  }