stub-auth 0.1.0 → 1.0.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.
Files changed (1) hide show
  1. package/package.json +25 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stub-auth",
3
- "version": "0.1.0",
3
+ "version": "1.0.1",
4
4
  "description": "Stub AI provider driver for core-auth — canned responses to validate the auth pipeline; the reference example for building provider plugins.",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -10,8 +10,18 @@
10
10
  "type": "git",
11
11
  "url": "git+https://github.com/intisy/stub-auth.git"
12
12
  },
13
- "keywords": ["core-auth", "provider", "stub", "auth", "example"],
14
- "files": ["dist/", "README.md", "LICENSE"],
13
+ "keywords": [
14
+ "core-auth",
15
+ "provider",
16
+ "stub",
17
+ "auth",
18
+ "example"
19
+ ],
20
+ "files": [
21
+ "dist/",
22
+ "README.md",
23
+ "LICENSE"
24
+ ],
15
25
  "engines": {
16
26
  "node": ">=20.0.0"
17
27
  },
@@ -21,9 +31,18 @@
21
31
  "name": "stub",
22
32
  "handler": "dist/handler.js",
23
33
  "models": [
24
- { "id": "stub-model", "name": "Stub Default" },
25
- { "id": "stub-pro", "name": "Stub Pro" },
26
- { "id": "stub-fast", "name": "Stub Fast" }
34
+ {
35
+ "id": "stub-model",
36
+ "name": "Stub Default"
37
+ },
38
+ {
39
+ "id": "stub-pro",
40
+ "name": "Stub Pro"
41
+ },
42
+ {
43
+ "id": "stub-fast",
44
+ "name": "Stub Fast"
45
+ }
27
46
  ]
28
47
  }
29
48
  ]