@a16njs/engine 0.8.0 → 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 +4 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -5,6 +5,10 @@
|
|
|
5
5
|
|
|
6
6
|
Conversion engine for a16n. Orchestrates plugins to convert between tools.
|
|
7
7
|
|
|
8
|
+
## Stability
|
|
9
|
+
|
|
10
|
+
As of `1.0.0`, the `A16nEngine` API and the plugin-orchestration contract are stable and follow semantic versioning: breaking changes to the public API bump the major version.
|
|
11
|
+
|
|
8
12
|
## Installation
|
|
9
13
|
|
|
10
14
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a16njs/engine",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Conversion engine for a16n",
|
|
5
5
|
"license": "AGPL-3.0",
|
|
6
6
|
"author": "Texarkanine",
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
"dist"
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@a16njs/models": "0.
|
|
34
|
+
"@a16njs/models": "1.0.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@types/node": "^
|
|
38
|
-
"typescript": "^
|
|
39
|
-
"vitest": "^2.
|
|
40
|
-
"@a16njs/plugin-
|
|
41
|
-
"@a16njs/plugin-
|
|
37
|
+
"@types/node": "^25.9.3",
|
|
38
|
+
"typescript": "^6.0.3",
|
|
39
|
+
"vitest": "^3.2.6",
|
|
40
|
+
"@a16njs/plugin-claude": "1.0.0",
|
|
41
|
+
"@a16njs/plugin-cursor": "1.0.0"
|
|
42
42
|
},
|
|
43
43
|
"engines": {
|
|
44
44
|
"node": ">=22.0.0"
|