@alpacakit/integrations 0.1.0-beta.36 → 0.1.0-beta.37
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 -2
- package/package.json +2 -14
package/README.md
CHANGED
|
@@ -2,8 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
Provider-neutral, import-only TypeScript contracts and HTTP adapters for
|
|
4
4
|
development-management services. The root export includes the runtime and the
|
|
5
|
-
built-in GitHub, GitLab, and Gitea definitions. Machine-local config
|
|
6
|
-
|
|
5
|
+
built-in GitHub, GitLab, and Gitea definitions. Machine-local config and test
|
|
6
|
+
fakes are isolated under subpath exports. The OS keychain is not part of this
|
|
7
|
+
package: `SecretRef`s resolve through `@alpacakit/core/keyring`, the single
|
|
8
|
+
keychain owner of the workspace.
|
|
7
9
|
|
|
8
10
|
Repository setup is split into two provider-owned contracts:
|
|
9
11
|
`RepositoryScopeAdapter` applies provider-neutral repository updates to typed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alpacakit/integrations",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.37",
|
|
4
4
|
"description": "Provider-neutral development-management integrations for issues, pull requests, and repositories.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -13,10 +13,6 @@
|
|
|
13
13
|
"types": "./dist/config/index.d.ts",
|
|
14
14
|
"import": "./dist/config/index.js"
|
|
15
15
|
},
|
|
16
|
-
"./keyring": {
|
|
17
|
-
"types": "./dist/keyring/index.d.ts",
|
|
18
|
-
"import": "./dist/keyring/index.js"
|
|
19
|
-
},
|
|
20
16
|
"./testing": {
|
|
21
17
|
"types": "./dist/testing/index.d.ts",
|
|
22
18
|
"import": "./dist/testing/index.js"
|
|
@@ -37,20 +33,12 @@
|
|
|
37
33
|
},
|
|
38
34
|
"dependencies": {
|
|
39
35
|
"zod": "^4.3.6",
|
|
40
|
-
"@alpacakit/core": "0.1.0-beta.
|
|
36
|
+
"@alpacakit/core": "0.1.0-beta.37"
|
|
41
37
|
},
|
|
42
38
|
"devDependencies": {
|
|
43
39
|
"typescript": "^5.9.3",
|
|
44
40
|
"vitest": "^4.0.18"
|
|
45
41
|
},
|
|
46
|
-
"peerDependencies": {
|
|
47
|
-
"@napi-rs/keyring": "^1.3.0"
|
|
48
|
-
},
|
|
49
|
-
"peerDependenciesMeta": {
|
|
50
|
-
"@napi-rs/keyring": {
|
|
51
|
-
"optional": true
|
|
52
|
-
}
|
|
53
|
-
},
|
|
54
42
|
"scripts": {
|
|
55
43
|
"build": "tsc -p tsconfig.build.json",
|
|
56
44
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|