@circlesac/vlt-cli 0.0.1 → 26.3.0
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/package.json +16 -16
package/package.json
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "@circlesac/vlt-cli",
|
|
3
|
-
"description": "1Password-compatible secrets CLI for Circles Vault",
|
|
4
|
-
"type": "module",
|
|
5
2
|
"bin": {
|
|
6
3
|
"vlt": "bin/vlt.mjs"
|
|
7
4
|
},
|
|
5
|
+
"dependencies": {
|
|
6
|
+
"citty": "^0.2.1"
|
|
7
|
+
},
|
|
8
|
+
"description": "1Password-compatible secrets CLI for Circles Vault",
|
|
9
|
+
"devDependencies": {
|
|
10
|
+
"@types/bun": "latest",
|
|
11
|
+
"typescript": "^5.9.3"
|
|
12
|
+
},
|
|
8
13
|
"files": [
|
|
9
14
|
"bin"
|
|
10
15
|
],
|
|
11
|
-
"
|
|
12
|
-
"build": "bun build --compile src/index.ts --outfile vlt",
|
|
13
|
-
"dev": "bun run src/index.ts",
|
|
14
|
-
"postinstall": "node bin/install.js"
|
|
15
|
-
},
|
|
16
|
+
"name": "@circlesac/vlt-cli",
|
|
16
17
|
"repository": {
|
|
17
18
|
"type": "git",
|
|
18
19
|
"url": "https://github.com/circlesac/vlt-cli.git"
|
|
19
20
|
},
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"@types/bun": "latest",
|
|
25
|
-
"typescript": "^5.9.3"
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "bun build --compile src/index.ts --outfile vlt",
|
|
23
|
+
"dev": "bun run src/index.ts",
|
|
24
|
+
"postinstall": "node bin/install.js"
|
|
26
25
|
},
|
|
27
|
-
"
|
|
28
|
-
|
|
26
|
+
"type": "module",
|
|
27
|
+
"version": "26.3.0"
|
|
28
|
+
}
|