@butlerw/vellum 0.1.9 → 0.1.11
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/dist/index.mjs +5 -11
- package/package.json +8 -5
package/dist/index.mjs
CHANGED
|
@@ -170280,15 +170280,12 @@ __export(auth_exports, {
|
|
|
170280
170280
|
async function createCredentialManager2() {
|
|
170281
170281
|
const stores = [
|
|
170282
170282
|
new EnvCredentialStore(),
|
|
170283
|
-
new
|
|
170284
|
-
new EncryptedFileStore({
|
|
170283
|
+
new HybridCredentialStore({
|
|
170285
170284
|
filePath: `${process.env.HOME ?? process.env.USERPROFILE}/.vellum/credentials.enc`,
|
|
170286
170285
|
password: process.env.VELLUM_CREDENTIAL_PASSWORD ?? "vellum-default-key"
|
|
170287
170286
|
})
|
|
170288
170287
|
];
|
|
170289
|
-
return new CredentialManager(stores
|
|
170290
|
-
preferredWriteStore: "keychain"
|
|
170291
|
-
});
|
|
170288
|
+
return new CredentialManager(stores);
|
|
170292
170289
|
}
|
|
170293
170290
|
async function handleCredentials(args, context2) {
|
|
170294
170291
|
const filterProvider = args[0]?.toLowerCase();
|
|
@@ -180968,15 +180965,12 @@ var PROVIDER_ENV_VARS2 = {
|
|
|
180968
180965
|
async function createCredentialManager() {
|
|
180969
180966
|
const stores = [
|
|
180970
180967
|
new EnvCredentialStore(),
|
|
180971
|
-
new
|
|
180972
|
-
new EncryptedFileStore({
|
|
180968
|
+
new HybridCredentialStore({
|
|
180973
180969
|
filePath: `${process.env.HOME ?? process.env.USERPROFILE}/.vellum/credentials.enc`,
|
|
180974
180970
|
password: process.env.VELLUM_CREDENTIAL_PASSWORD ?? "vellum-default-key"
|
|
180975
180971
|
})
|
|
180976
180972
|
];
|
|
180977
|
-
return new CredentialManager(stores
|
|
180978
|
-
preferredWriteStore: "keychain"
|
|
180979
|
-
});
|
|
180973
|
+
return new CredentialManager(stores);
|
|
180980
180974
|
}
|
|
180981
180975
|
function ListCredentials({ onComplete }) {
|
|
180982
180976
|
const { exit } = useApp();
|
|
@@ -195300,7 +195294,7 @@ init_esm_shims();
|
|
|
195300
195294
|
|
|
195301
195295
|
// src/version.ts
|
|
195302
195296
|
init_esm_shims();
|
|
195303
|
-
var version = "0.1.
|
|
195297
|
+
var version = "0.1.11" ;
|
|
195304
195298
|
|
|
195305
195299
|
// src/tui/components/Banner/ShimmerText.tsx
|
|
195306
195300
|
init_esm_shims();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@butlerw/vellum",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "Next-generation AI coding assistant CLI",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
@@ -48,6 +48,9 @@
|
|
|
48
48
|
"wrap-ansi": "9.0.2",
|
|
49
49
|
"zod": "^4.3.5"
|
|
50
50
|
},
|
|
51
|
+
"optionalDependencies": {
|
|
52
|
+
"keytar": "^7.9.0"
|
|
53
|
+
},
|
|
51
54
|
"devDependencies": {
|
|
52
55
|
"@types/blessed": "^0.1.25",
|
|
53
56
|
"@types/marked": "^6.0.0",
|
|
@@ -57,13 +60,13 @@
|
|
|
57
60
|
"tsup": "^8.3.5",
|
|
58
61
|
"tsx": "^4.19.2",
|
|
59
62
|
"typescript": "^5.7.2",
|
|
60
|
-
"@vellum/core": "0.1.1",
|
|
61
|
-
"@vellum/mcp": "0.1.1",
|
|
62
63
|
"@vellum/lsp": "0.1.0",
|
|
63
64
|
"@vellum/plugin": "0.1.1",
|
|
64
|
-
"@vellum/
|
|
65
|
+
"@vellum/mcp": "0.1.1",
|
|
65
66
|
"@vellum/sandbox": "0.1.0",
|
|
66
|
-
"@vellum/shared": "0.1.0"
|
|
67
|
+
"@vellum/shared": "0.1.0",
|
|
68
|
+
"@vellum/core": "0.1.1",
|
|
69
|
+
"@vellum/provider": "0.1.0"
|
|
67
70
|
},
|
|
68
71
|
"scripts": {
|
|
69
72
|
"build": "tsup",
|