dev/zhi #1
@@ -22,7 +22,7 @@ const __filename = fileURLToPath(import.meta.url);
|
|||||||
const __dirname = resolve(dirname(__filename));
|
const __dirname = resolve(dirname(__filename));
|
||||||
|
|
||||||
// Plugin configuration
|
// Plugin configuration
|
||||||
const PLUGIN_NAME = 'padded-cell';
|
const PLUGIN_NAME = 'PaddedCell';
|
||||||
|
|
||||||
// Parse arguments
|
// Parse arguments
|
||||||
const args = process.argv.slice(2);
|
const args = process.argv.slice(2);
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"id": "padded-cell",
|
"id": "PaddedCell",
|
||||||
"name": "PaddedCell",
|
"name": "PaddedCell",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"description": "Secure password management, safe execution, and coordinated restart",
|
"description": "Secure password management, safe execution, and coordinated restart",
|
||||||
|
|||||||
@@ -2,11 +2,13 @@ module pass_mgr
|
|||||||
|
|
||||||
go 1.24.0
|
go 1.24.0
|
||||||
|
|
||||||
require github.com/spf13/cobra v1.8.0
|
require (
|
||||||
|
github.com/spf13/cobra v1.8.0
|
||||||
|
golang.org/x/term v0.40.0
|
||||||
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
||||||
github.com/spf13/pflag v1.0.5 // indirect
|
github.com/spf13/pflag v1.0.5 // indirect
|
||||||
golang.org/x/sys v0.41.0 // indirect
|
golang.org/x/sys v0.41.0 // indirect
|
||||||
golang.org/x/term v0.40.0 // indirect
|
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user