2022-09-23 19:44:31 +00:00
|
|
|
{
|
|
|
|
"name": "mypkg",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"functions": {
|
|
|
|
"mypkg::funcWithSecrets": {
|
|
|
|
"inputs": {
|
|
|
|
"properties": {
|
|
|
|
"cryptoKey": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"plaintext": {
|
|
|
|
"type": "string",
|
|
|
|
"secret": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"type": "object",
|
|
|
|
"required": [
|
|
|
|
"cryptoKey",
|
|
|
|
"plaintext"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"outputs": {
|
|
|
|
"properties": {
|
|
|
|
"ciphertext": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"cryptoKey": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"id": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"plaintext": {
|
|
|
|
"type": "string",
|
|
|
|
"secret": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"type": "object",
|
|
|
|
"required": [
|
|
|
|
"ciphertext",
|
|
|
|
"cryptoKey",
|
|
|
|
"plaintext",
|
|
|
|
"id"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"language": {
|
|
|
|
"nodejs": {
|
|
|
|
"devDependencies": {
|
2023-02-07 10:35:58 +00:00
|
|
|
"@types/node": "ts4.3"
|
2022-09-23 19:44:31 +00:00
|
|
|
}
|
|
|
|
},
|
2023-06-14 16:34:49 +00:00
|
|
|
"go": {
|
|
|
|
"importBasePath": "functions-secrets/mypkg"
|
|
|
|
},
|
2022-12-13 10:51:55 +00:00
|
|
|
"python": {}
|
2022-09-23 19:44:31 +00:00
|
|
|
}
|
|
|
|
}
|