@trayio/cdk-cli 0.0.1 → 0.0.2

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.
Files changed (1) hide show
  1. package/package.json +67 -64
package/package.json CHANGED
@@ -1,66 +1,69 @@
1
1
  {
2
- "name": "@trayio/cdk-cli",
3
- "version": "0.0.1",
4
- "description": "A collection of CLI commands for connector development.",
5
- "main": "index.js",
6
- "types": "index.d.ts",
7
- "exports": {
8
- "require": "./dist/index.js",
9
- "import": "./dist/index.js",
10
- "types": "./dist/index.d.ts"
11
- },
12
- "license": "MIT",
13
- "dependencies": {
14
- "@oclif/core": "*",
15
- "@oclif/plugin-autocomplete": "*",
16
- "@oclif/plugin-help": "*",
17
- "@oclif/plugin-version": "*",
18
- "@oclif/test": "*"
19
- },
20
- "typesVersions": {
21
- "*": {
22
- "*": [
23
- "*",
24
- "dist/*"
25
- ]
26
- }
27
- },
28
- "files": [
29
- "/bin",
30
- "/dist",
31
- "/npm-shrinkwrap.json",
32
- "/oclif.manifest.json"
33
- ],
34
- "bin": "./bin/run",
35
- "oclif": {
36
- "commands": "./dist/commands",
37
- "bin": "cdk",
38
- "topics": {
39
- "connector": {
40
- "description": "Connector related commands"
41
- },
42
- "multi": {
43
- "description": "Connector related commands targeting multiple environments/regions. (Default: US, EU1 and AP1. Staging flag: Staging and Frontend-staging)"
44
- },
45
- "generate": {
46
- "description": "Run generators for things like connectors, operations, tests, etc."
47
- }
48
- },
49
- "plugins": [
50
- "@oclif/plugin-help",
51
- "@oclif/plugin-autocomplete",
52
- "@oclif/plugin-version"
53
- ],
54
- "additionalHelpFlags": [
55
- "-h"
56
- ],
57
- "additionalVersionFlags": [
58
- "-v"
59
- ]
60
- },
61
- "scripts": {
62
- "oclif:clean": "rm -f oclif.manifest.json",
63
- "postcompile": "oclif manifest && oclif readme"
64
- },
65
- "gitHead": "f5c9d4eaec4f9d523356b4ed96698644acfce32d"
2
+ "name": "@trayio/cdk-cli",
3
+ "version": "0.0.2",
4
+ "description": "A collection of CLI commands for connector development.",
5
+ "main": "./dist/index.js",
6
+ "types": "index.d.ts",
7
+ "exports": {
8
+ "require": "./dist/index.js",
9
+ "import": "./dist/index.js",
10
+ "types": "./dist/index.d.ts"
11
+ },
12
+ "license": "MIT",
13
+ "dependencies": {
14
+ "@oclif/core": "*",
15
+ "@oclif/plugin-autocomplete": "*",
16
+ "@oclif/plugin-help": "*",
17
+ "@oclif/plugin-version": "*",
18
+ "@oclif/test": "*"
19
+ },
20
+ "typesVersions": {
21
+ "*": {
22
+ "*": [
23
+ "*",
24
+ "dist/*"
25
+ ]
26
+ }
27
+ },
28
+ "files": [
29
+ "/bin",
30
+ "/dist",
31
+ "/npm-shrinkwrap.json",
32
+ "/oclif.manifest.json"
33
+ ],
34
+ "bin": {
35
+ "cdk": "./bin/run",
36
+ "cdk-cli": "./bin/run"
37
+ },
38
+ "oclif": {
39
+ "commands": "./dist/commands",
40
+ "bin": "cdk",
41
+ "topics": {
42
+ "connector": {
43
+ "description": "Connector related commands"
44
+ },
45
+ "multi": {
46
+ "description": "Connector related commands targeting multiple environments/regions. (Default: US, EU1 and AP1. Staging flag: Staging and Frontend-staging)"
47
+ },
48
+ "generate": {
49
+ "description": "Run generators for things like connectors, operations, tests, etc."
50
+ }
51
+ },
52
+ "plugins": [
53
+ "@oclif/plugin-help",
54
+ "@oclif/plugin-autocomplete",
55
+ "@oclif/plugin-version"
56
+ ],
57
+ "additionalHelpFlags": [
58
+ "-h"
59
+ ],
60
+ "additionalVersionFlags": [
61
+ "-v"
62
+ ]
63
+ },
64
+ "scripts": {
65
+ "oclif:clean": "rm -f oclif.manifest.json",
66
+ "postcompile": "oclif manifest && oclif readme"
67
+ },
68
+ "gitHead": "36f881ee050298119269b4f2ad889865def3e8e1"
66
69
  }