@byollm/conformance 0.1.0-alpha.0 → 0.1.0-alpha.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/README.md +7 -5
- package/package.json +12 -4
package/README.md
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
> [!WARNING]
|
|
2
|
-
> **Alpha 0.1.0 — under active development. Don't use this yet.**
|
|
2
|
+
> **Alpha (`0.1.0-alpha.2`) — under active development. Don't use this yet.**
|
|
3
|
+
>
|
|
4
|
+
> Install it deliberately: `npm install @byollm/conformance@alpha`.
|
|
3
5
|
>
|
|
4
|
-
> > Install it deliberately: `npm install @byollm/conformance@alpha`.
|
|
5
6
|
> The protocol is v0 and **will** change without a deprecation path, this has
|
|
6
7
|
> never run outside its own test suite, and nothing here has production miles.
|
|
7
8
|
> Read it, take the ideas, tell us what's wrong — but don't put it in front of
|
|
8
9
|
> your users.
|
|
9
10
|
>
|
|
10
|
-
> npm assigns `latest` on a first publish and won't let it be removed, so
|
|
11
|
-
>
|
|
12
|
-
>
|
|
11
|
+
> npm assigns `latest` on a first publish and won't let it be removed, so a
|
|
12
|
+
> bare install resolves here too. This notice is the only guard — deliberately
|
|
13
|
+
> not an npm deprecation, which would read as *abandoned* rather than *early*.
|
|
14
|
+
> Ask for `@alpha` explicitly so your lockfile records that you meant to.
|
|
13
15
|
|
|
14
16
|
# `@byollm/conformance`
|
|
15
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byollm/conformance",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.2",
|
|
4
4
|
"description": "The BYOLLM compatibility contract — drive a real daemon against any server and assert every protocol MUST.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -24,16 +24,24 @@
|
|
|
24
24
|
"node": ">=22.12"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@byollm/protocol": "0.1.0-alpha.
|
|
28
|
-
"byollm": "0.1.0-alpha.
|
|
27
|
+
"@byollm/protocol": "0.1.0-alpha.2",
|
|
28
|
+
"byollm": "0.1.0-alpha.2"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@supabase/supabase-js": "^2.112.2",
|
|
32
|
-
"@byollm/server": "0.1.0-alpha.
|
|
32
|
+
"@byollm/server": "0.1.0-alpha.2"
|
|
33
33
|
},
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "git+https://github.com/oftomorrowinc/byollm.git",
|
|
40
|
+
"directory": "packages/conformance"
|
|
41
|
+
},
|
|
42
|
+
"bugs": {
|
|
43
|
+
"url": "https://github.com/oftomorrowinc/byollm/issues"
|
|
44
|
+
},
|
|
37
45
|
"scripts": {
|
|
38
46
|
"build": "tsup",
|
|
39
47
|
"clean": "rm -rf dist .tsbuild",
|