Add descriptions to plugins

This commit is contained in:
Gregory Schier
2025-07-06 12:47:13 -07:00
parent cf35658fea
commit 47722643ee
30 changed files with 150 additions and 85 deletions

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/action-copy-curl",
"displayName": "Copy as Curl",
"description": "Copy request as a curl command",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.js",
"dev": "yaakcli dev ./src/index.js",
"build": "yaakcli build",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
}
}

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/action-copy-grpcurl",
"displayName": "Copy as gRPCurl",
"description": "Copy gRPC request as a grpcurl command",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.js",
"dev": "yaakcli dev ./src/index.js",
"build": "yaakcli build",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
}
}

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/auth-basic",
"displayName": "Basic Authentication",
"description": "Authenticate requests using Basic Auth",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.ts",
"dev": "yaakcli dev ./src/index.js",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
}
}

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/auth-bearer",
"displayName": "Bearer Authentication",
"description": "Authenticate requests using bearer authentication",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.ts",
"dev": "yaakcli dev ./src/index.js",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
}
}

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/auth-jwt",
"displayName": "JWT Authentication",
"description": "Authenticate requests using JSON web tokens (JWT)",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.ts",
"dev": "yaakcli dev ./src/index.js",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
},
"dependencies": {

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/auth-oauth2",
"displayName": "OAuth 2.0 Authentication",
"description": "Authenticate requests using OAuth 2.0",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.ts",
"dev": "yaakcli dev ./src/index.js",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
}
}

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/filter-jsonpath",
"displayName": "JSONPath Filter",
"description": "Filter JSON response data using JSONPath expressions",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.ts",
"dev": "yaakcli dev ./src/index.js",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
},
"dependencies": {

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/filter-xpath",
"displayName": "XPath Filter",
"description": "Filter response XML data using XPath expressions",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.js",
"dev": "yaakcli dev ./src/index.js",
"build": "yaakcli build",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
},
"dependencies": {

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/importer-curl",
"displayName": "cURL Importer",
"description": "Import requests from cURL commands",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.js",
"dev": "yaakcli dev ./src/index.js",
"build": "yaakcli build",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
},
"dependencies": {

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/importer-insomnia",
"displayName": "Insomnia Importer",
"description": "Import data from Insomnia",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.js",
"dev": "yaakcli dev ./src/index.js",
"build": "yaakcli build",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
},
"dependencies": {

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/importer-openapi",
"displayName": "OpenAPI Importer",
"description": "Import API specifications from OpenAPI/Swagger format",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.js",
"dev": "yaakcli dev ./src/index.js",
"build": "yaakcli build",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
},
"dependencies": {

View File

@@ -1,11 +1,13 @@
{
"name": "@yaak/importer-postman",
"displayName": "Postman Importer",
"description": "Import collections from Postman",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"main": "./build/index.js",
"scripts": {
"build": "yaakcli build ./src/index.js",
"dev": "yaakcli dev ./src/index.js",
"build": "yaakcli build",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
}
}

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/importer-yaak",
"displayName": "Yaak Importer",
"description": "Import data from Yaak export files",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.js",
"dev": "yaakcli dev ./src/index.js",
"build": "yaakcli build",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
}
}

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/template-function-cookie",
"displayName": "Cookie Template Functions",
"description": "Template functions for working with cookies",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.ts",
"dev": "yaakcli dev ./src/index.js",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
}
}

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/template-function-encode",
"displayName": "Encoding Template Functions",
"description": "Template functions for encoding and decoding data",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.ts",
"dev": "yaakcli dev ./src/index.js",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
}
}

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/template-function-fs",
"displayName": "File System Template Functions",
"description": "Template functions for working with the file system",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.ts",
"dev": "yaakcli dev ./src/index.js",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
}
}

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/template-function-hash",
"displayName": "Hash Template Functions",
"description": "Template functions for generating hash values",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.ts",
"dev": "yaakcli dev ./src/index.js",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
}
}

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/template-function-json",
"displayName": "JSON Template Functions",
"description": "Template functions for working with JSON data",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.ts",
"dev": "yaakcli dev ./src/index.js",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
},
"dependencies": {

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/template-function-prompt",
"displayName": "Prompt Template Functions",
"description": "Template functions for prompting for user input",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.ts",
"dev": "yaakcli dev ./src/index.js",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
}
}

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/template-function-regex",
"displayName": "Regex Template Functions",
"description": "Template functions for working with regular expressions",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.ts",
"dev": "yaakcli dev ./src/index.js",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
}
}

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/template-function-request",
"displayName": "Request Template Functions",
"description": "Template functions for extracting value from requests",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.ts",
"dev": "yaakcli dev ./src/index.js",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
}
}

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/template-function-response",
"displayName": "Response Template Functions",
"description": "Template functions for request chaining",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.ts",
"dev": "yaakcli dev ./src/index.js",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
},
"dependencies": {

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/template-function-uuid",
"displayName": "UUID Template Functions",
"description": "Template functions for generating UUIDs",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.ts",
"dev": "yaakcli dev ./src/index.js",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
},
"dependencies": {

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/template-function-xml",
"displayName": "XML Template Functions",
"description": "Template functions for working with XML data",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.ts",
"dev": "yaakcli dev ./src/index.js",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
},
"dependencies": {

View File

@@ -1,10 +1,12 @@
{
"name": "@yaak/themes-yaak",
"displayName": "Yaak Themes",
"description": "Default themes for Yaak",
"private": true,
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"build": "yaakcli build ./src/index.ts",
"dev": "yaakcli dev ./src/index.js",
"dev": "yaakcli dev",
"lint": "tsc --noEmit"
}
}