@trayio/cdk-cli
Advanced tools
Comparing version 0.0.1 to 0.0.2
131
package.json
{ | ||
"name": "@trayio/cdk-cli", | ||
"version": "0.0.1", | ||
"description": "A collection of CLI commands for connector development.", | ||
"main": "index.js", | ||
"types": "index.d.ts", | ||
"exports": { | ||
"require": "./dist/index.js", | ||
"import": "./dist/index.js", | ||
"types": "./dist/index.d.ts" | ||
}, | ||
"license": "MIT", | ||
"dependencies": { | ||
"@oclif/core": "*", | ||
"@oclif/plugin-autocomplete": "*", | ||
"@oclif/plugin-help": "*", | ||
"@oclif/plugin-version": "*", | ||
"@oclif/test": "*" | ||
}, | ||
"typesVersions": { | ||
"*": { | ||
"*": [ | ||
"*", | ||
"dist/*" | ||
] | ||
} | ||
}, | ||
"files": [ | ||
"/bin", | ||
"/dist", | ||
"/npm-shrinkwrap.json", | ||
"/oclif.manifest.json" | ||
], | ||
"bin": "./bin/run", | ||
"oclif": { | ||
"commands": "./dist/commands", | ||
"bin": "cdk", | ||
"topics": { | ||
"connector": { | ||
"description": "Connector related commands" | ||
}, | ||
"multi": { | ||
"description": "Connector related commands targeting multiple environments/regions. (Default: US, EU1 and AP1. Staging flag: Staging and Frontend-staging)" | ||
}, | ||
"generate": { | ||
"description": "Run generators for things like connectors, operations, tests, etc." | ||
} | ||
}, | ||
"plugins": [ | ||
"@oclif/plugin-help", | ||
"@oclif/plugin-autocomplete", | ||
"@oclif/plugin-version" | ||
], | ||
"additionalHelpFlags": [ | ||
"-h" | ||
], | ||
"additionalVersionFlags": [ | ||
"-v" | ||
] | ||
}, | ||
"scripts": { | ||
"oclif:clean": "rm -f oclif.manifest.json", | ||
"postcompile": "oclif manifest && oclif readme" | ||
}, | ||
"gitHead": "f5c9d4eaec4f9d523356b4ed96698644acfce32d" | ||
"name": "@trayio/cdk-cli", | ||
"version": "0.0.2", | ||
"description": "A collection of CLI commands for connector development.", | ||
"main": "./dist/index.js", | ||
"types": "index.d.ts", | ||
"exports": { | ||
"require": "./dist/index.js", | ||
"import": "./dist/index.js", | ||
"types": "./dist/index.d.ts" | ||
}, | ||
"license": "MIT", | ||
"dependencies": { | ||
"@oclif/core": "*", | ||
"@oclif/plugin-autocomplete": "*", | ||
"@oclif/plugin-help": "*", | ||
"@oclif/plugin-version": "*", | ||
"@oclif/test": "*" | ||
}, | ||
"typesVersions": { | ||
"*": { | ||
"*": [ | ||
"*", | ||
"dist/*" | ||
] | ||
} | ||
}, | ||
"files": [ | ||
"/bin", | ||
"/dist", | ||
"/npm-shrinkwrap.json", | ||
"/oclif.manifest.json" | ||
], | ||
"bin": { | ||
"cdk": "./bin/run", | ||
"cdk-cli": "./bin/run" | ||
}, | ||
"oclif": { | ||
"commands": "./dist/commands", | ||
"bin": "cdk", | ||
"topics": { | ||
"connector": { | ||
"description": "Connector related commands" | ||
}, | ||
"multi": { | ||
"description": "Connector related commands targeting multiple environments/regions. (Default: US, EU1 and AP1. Staging flag: Staging and Frontend-staging)" | ||
}, | ||
"generate": { | ||
"description": "Run generators for things like connectors, operations, tests, etc." | ||
} | ||
}, | ||
"plugins": [ | ||
"@oclif/plugin-help", | ||
"@oclif/plugin-autocomplete", | ||
"@oclif/plugin-version" | ||
], | ||
"additionalHelpFlags": [ | ||
"-h" | ||
], | ||
"additionalVersionFlags": [ | ||
"-v" | ||
] | ||
}, | ||
"scripts": { | ||
"oclif:clean": "rm -f oclif.manifest.json", | ||
"postcompile": "oclif manifest && oclif readme" | ||
}, | ||
"gitHead": "36f881ee050298119269b4f2ad889865def3e8e1" | ||
} |
4736