@peernova/cuneiform-sf 1.0.1-beta.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.
@@ -0,0 +1,118 @@
1
+ {
2
+ "commands": {
3
+ "cuneiform:about": {
4
+ "aliases": [],
5
+ "args": {},
6
+ "description": "More information about a command. Don't repeat the summary.",
7
+ "examples": [
8
+ "<%= config.bin %> <%= command.id %>"
9
+ ],
10
+ "flags": {
11
+ "json": {
12
+ "description": "Format output as json.",
13
+ "helpGroup": "GLOBAL",
14
+ "name": "json",
15
+ "allowNo": false,
16
+ "type": "boolean"
17
+ },
18
+ "flags-dir": {
19
+ "helpGroup": "GLOBAL",
20
+ "name": "flags-dir",
21
+ "summary": "Import flag values from a directory.",
22
+ "hasDynamicHelp": false,
23
+ "multiple": false,
24
+ "type": "option"
25
+ },
26
+ "name": {
27
+ "char": "n",
28
+ "description": "More information about a flag. Don't repeat the summary.",
29
+ "name": "name",
30
+ "required": false,
31
+ "summary": "Description of a flag.",
32
+ "hasDynamicHelp": false,
33
+ "multiple": false,
34
+ "type": "option"
35
+ }
36
+ },
37
+ "hasDynamicHelp": false,
38
+ "hiddenAliases": [],
39
+ "id": "cuneiform:about",
40
+ "pluginAlias": "@peernova/cuneiform-sf",
41
+ "pluginName": "@peernova/cuneiform-sf",
42
+ "pluginType": "core",
43
+ "strict": true,
44
+ "summary": "Summary of a command.",
45
+ "enableJsonFlag": true,
46
+ "isESM": true,
47
+ "relativePath": [
48
+ "lib",
49
+ "commands",
50
+ "cuneiform",
51
+ "about.js"
52
+ ],
53
+ "aliasPermutations": [],
54
+ "permutations": [
55
+ "cuneiform:about",
56
+ "about:cuneiform"
57
+ ]
58
+ },
59
+ "hello:world": {
60
+ "aliases": [],
61
+ "args": {},
62
+ "description": "Say hello either to the world or someone you know.",
63
+ "examples": [
64
+ "Say hello to the world:\n<%= config.bin %> <%= command.id %>",
65
+ "Say hello to someone you know:\n<%= config.bin %> <%= command.id %> --name Astro"
66
+ ],
67
+ "flags": {
68
+ "json": {
69
+ "description": "Format output as json.",
70
+ "helpGroup": "GLOBAL",
71
+ "name": "json",
72
+ "allowNo": false,
73
+ "type": "boolean"
74
+ },
75
+ "flags-dir": {
76
+ "helpGroup": "GLOBAL",
77
+ "name": "flags-dir",
78
+ "summary": "Import flag values from a directory.",
79
+ "hasDynamicHelp": false,
80
+ "multiple": false,
81
+ "type": "option"
82
+ },
83
+ "name": {
84
+ "char": "n",
85
+ "description": "This person can be anyone in the world!",
86
+ "name": "name",
87
+ "summary": "The name of the person you'd like to say hello to.",
88
+ "default": "World",
89
+ "hasDynamicHelp": false,
90
+ "multiple": false,
91
+ "type": "option"
92
+ }
93
+ },
94
+ "hasDynamicHelp": false,
95
+ "hiddenAliases": [],
96
+ "id": "hello:world",
97
+ "pluginAlias": "@peernova/cuneiform-sf",
98
+ "pluginName": "@peernova/cuneiform-sf",
99
+ "pluginType": "core",
100
+ "strict": true,
101
+ "summary": "Say hello.",
102
+ "enableJsonFlag": true,
103
+ "isESM": true,
104
+ "relativePath": [
105
+ "lib",
106
+ "commands",
107
+ "hello",
108
+ "world.js"
109
+ ],
110
+ "aliasPermutations": [],
111
+ "permutations": [
112
+ "hello:world",
113
+ "world:hello"
114
+ ]
115
+ }
116
+ },
117
+ "version": "1.0.1-beta.2"
118
+ }
package/package.json ADDED
@@ -0,0 +1,195 @@
1
+ {
2
+ "name": "@peernova/cuneiform-sf",
3
+ "description": "Cuneiform for Salesforce CLI-Powered Data Profiling",
4
+ "version": "1.0.1-beta.2",
5
+ "dependencies": {
6
+ "@oclif/core": "^4",
7
+ "@salesforce/core": "^8",
8
+ "@salesforce/sf-plugins-core": "^12"
9
+ },
10
+ "devDependencies": {
11
+ "@oclif/plugin-command-snapshot": "^5.1.9",
12
+ "@types/node": "^22",
13
+ "@salesforce/cli-plugins-testkit": "^5.3.10",
14
+ "@salesforce/dev-scripts": "^10",
15
+ "eslint-plugin-sf-plugin": "^1.20.33",
16
+ "oclif": "^4.14.0",
17
+ "ts-node": "^10.9.2",
18
+ "typescript": "^5.4.5"
19
+ },
20
+ "engines": {
21
+ "node": ">=18.0.0"
22
+ },
23
+ "files": [
24
+ "/lib",
25
+ "/messages",
26
+ "/oclif.manifest.json",
27
+ "/oclif.lock"
28
+ ],
29
+ "keywords": [
30
+ "salesforce",
31
+ "sf-cli",
32
+ "sfdx-plugin",
33
+ "data-profiling",
34
+ "data-quality",
35
+ "cuneiform"
36
+ ],
37
+ "license": "BSD-3-Clause",
38
+ "oclif": {
39
+ "commands": "./lib/commands",
40
+ "bin": "sf",
41
+ "topicSeparator": " ",
42
+ "devPlugins": [
43
+ "@oclif/plugin-help"
44
+ ],
45
+ "topics": {
46
+ "hello": {
47
+ "description": "Commands to say hello."
48
+ },
49
+ "cuneiform": {
50
+ "description": "provides a description of the Cuneiform for Salesforce SFDX Plugin."
51
+ }
52
+ },
53
+ "flexibleTaxonomy": true
54
+ },
55
+ "scripts": {
56
+ "build": "wireit",
57
+ "clean": "sf-clean",
58
+ "clean-all": "sf-clean all",
59
+ "compile": "wireit",
60
+ "docs": "sf-docs",
61
+ "format": "wireit",
62
+ "link-check": "wireit",
63
+ "lint": "wireit",
64
+ "prepare": "husky install || true",
65
+ "postpack": "sf-clean --ignore-signing-artifacts",
66
+ "prepack": "sf-prepack",
67
+ "test": "wireit",
68
+ "test:nuts": "nyc mocha \"**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
69
+ "test:only": "wireit",
70
+ "version": "oclif readme"
71
+ },
72
+ "publishConfig": {
73
+ "access": "public"
74
+ },
75
+ "wireit": {
76
+ "build": {
77
+ "dependencies": [
78
+ "compile",
79
+ "lint"
80
+ ]
81
+ },
82
+ "compile": {
83
+ "command": "tsc -p . --pretty --incremental",
84
+ "files": [
85
+ "src/**/*.ts",
86
+ "**/tsconfig.json",
87
+ "messages/**"
88
+ ],
89
+ "output": [
90
+ "lib/**",
91
+ "*.tsbuildinfo"
92
+ ],
93
+ "clean": "if-file-deleted"
94
+ },
95
+ "format": {
96
+ "command": "prettier --write \"+(src|test|schemas)/**/*.+(ts|js|json)|command-snapshot.json\"",
97
+ "files": [
98
+ "src/**/*.ts",
99
+ "test/**/*.ts",
100
+ "schemas/**/*.json",
101
+ "command-snapshot.json",
102
+ ".prettier*"
103
+ ],
104
+ "output": []
105
+ },
106
+ "lint": {
107
+ "command": "eslint src test --color --cache --cache-location .eslintcache",
108
+ "files": [
109
+ "src/**/*.ts",
110
+ "test/**/*.ts",
111
+ "messages/**",
112
+ "**/.eslint*",
113
+ "**/tsconfig.json"
114
+ ],
115
+ "output": []
116
+ },
117
+ "test:compile": {
118
+ "command": "tsc -p \"./test\" --pretty",
119
+ "files": [
120
+ "test/**/*.ts",
121
+ "**/tsconfig.json"
122
+ ],
123
+ "output": []
124
+ },
125
+ "test": {
126
+ "dependencies": [
127
+ "test:compile",
128
+ "test:only",
129
+ "lint"
130
+ ]
131
+ },
132
+ "test:only": {
133
+ "command": "nyc mocha \"test/**/*.test.ts\"",
134
+ "env": {
135
+ "FORCE_COLOR": "2"
136
+ },
137
+ "files": [
138
+ "test/**/*.ts",
139
+ "src/**/*.ts",
140
+ "**/tsconfig.json",
141
+ ".mocha*",
142
+ "!*.nut.ts",
143
+ ".nycrc"
144
+ ],
145
+ "output": []
146
+ },
147
+ "test:command-reference": {
148
+ "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" commandreference:generate --erroronwarnings",
149
+ "files": [
150
+ "src/**/*.ts",
151
+ "messages/**",
152
+ "package.json"
153
+ ],
154
+ "output": [
155
+ "tmp/root"
156
+ ]
157
+ },
158
+ "test:deprecation-policy": {
159
+ "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" snapshot:compare",
160
+ "files": [
161
+ "src/**/*.ts"
162
+ ],
163
+ "output": [],
164
+ "dependencies": [
165
+ "compile"
166
+ ]
167
+ },
168
+ "test:json-schema": {
169
+ "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" schema:compare",
170
+ "files": [
171
+ "src/**/*.ts",
172
+ "schemas"
173
+ ],
174
+ "output": []
175
+ },
176
+ "link-check": {
177
+ "command": "node -e \"process.exit(process.env.CI ? 0 : 1)\" || linkinator \"**/*.md\" --skip \"CHANGELOG.md|node_modules|test/|confluence.internal.salesforce.com|my.salesforce.com|%s\" --markdown --retry --directory-listing --verbosity error",
178
+ "files": [
179
+ "./*.md",
180
+ "./!(CHANGELOG).md",
181
+ "messages/**/*.md"
182
+ ],
183
+ "output": []
184
+ }
185
+ },
186
+ "exports": "./lib/index.js",
187
+ "type": "module",
188
+ "author": "Abraham David Lloyd (PeerNova)",
189
+ "repository": {
190
+ "type": "git",
191
+ "url": "https://github.com/PeerNova-Solutions/cuneiform-cli.git",
192
+ "directory": "@peernova/cuneiform-sf"
193
+ },
194
+ "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
195
+ }