@agenticprimitives/connect 0.1.0-alpha.2 → 1.0.0-alpha.4

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 +16 -16
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@agenticprimitives/connect",
3
- "version": "0.1.0-alpha.2",
4
- "description": "Agentic Connect \u2014 the SSO broker (spec 224 / ADR-0014). Mints CAIP-10-subject, no-owner AgentSessions (asymmetric + JWKS); drives entry-flow convergence (connect-auth verify \u2192 identity-directory resolve \u2192 issue/bootstrap/disambiguate) with assurance floor, non-EVM gate, and code-exchange redirect security.",
3
+ "version": "1.0.0-alpha.4",
4
+ "description": "Agentic Connect the SSO broker (spec 224 / ADR-0014). Mints CAIP-10-subject, no-owner AgentSessions (asymmetric + JWKS); drives entry-flow convergence (connect-auth verify identity-directory resolve issue/bootstrap/disambiguate) with assurance floor, non-EVM gate, and code-exchange redirect security.",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -27,22 +27,13 @@
27
27
  "spec.md",
28
28
  "README.md"
29
29
  ],
30
- "scripts": {
31
- "build": "tsc -p tsconfig.build.json",
32
- "typecheck": "tsc -p tsconfig.json --noEmit",
33
- "test": "vitest run",
34
- "test:unit": "vitest run test/unit",
35
- "test:integration": "vitest run test/integration --passWithNoTests",
36
- "test:watch": "vitest",
37
- "clean": "rm -rf dist"
38
- },
39
30
  "publishConfig": {
40
31
  "access": "public"
41
32
  },
42
33
  "peerDependencies": {
43
- "@agenticprimitives/connect-auth": "workspace:*",
44
- "@agenticprimitives/identity-directory": "workspace:*",
45
- "@agenticprimitives/types": "workspace:*"
34
+ "@agenticprimitives/connect-auth": "1.0.0-alpha.4",
35
+ "@agenticprimitives/identity-directory": "1.0.0-alpha.4",
36
+ "@agenticprimitives/types": "1.0.0-alpha.4"
46
37
  },
47
38
  "devDependencies": {
48
39
  "vitest": "^2.1.0"
@@ -53,5 +44,14 @@
53
44
  "agentsession",
54
45
  "jwks",
55
46
  "agentic"
56
- ]
57
- }
47
+ ],
48
+ "scripts": {
49
+ "build": "tsc -p tsconfig.build.json",
50
+ "typecheck": "tsc -p tsconfig.json --noEmit",
51
+ "test": "vitest run",
52
+ "test:unit": "vitest run test/unit",
53
+ "test:integration": "vitest run test/integration --passWithNoTests",
54
+ "test:watch": "vitest",
55
+ "clean": "rm -rf dist"
56
+ }
57
+ }