@sorrell/cli-utilities 1.0.0
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.
- package/Distribution/Print.d.ts +2 -0
- package/Distribution/Print.d.ts.map +1 -0
- package/Distribution/Print.js +11 -0
- package/Distribution/Print.js.map +1 -0
- package/Distribution/index.d.ts +2 -0
- package/Distribution/index.d.ts.map +1 -0
- package/Distribution/index.js +7 -0
- package/Distribution/index.js.map +1 -0
- package/package.json +46 -0
- package/tsconfig.json +34 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Print.d.ts","sourceRoot":"","sources":["../Source/Print.ts"],"names":[],"mappings":"AAQA,wBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAG9C"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* File: Print.ts
|
|
2
|
+
* Author: Gage Sorrell <gage@sorrell.sh>
|
|
3
|
+
* Copyright: (c) 2026 Gage Sorrell
|
|
4
|
+
* License: MIT
|
|
5
|
+
* Comment: This module contains functions to output messages
|
|
6
|
+
* to the user with consistent and aesthetic formatting.
|
|
7
|
+
*/
|
|
8
|
+
export function Format(Message) {
|
|
9
|
+
return Message;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=Print.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Print.js","sourceRoot":"","sources":["../Source/Print.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,MAAM,UAAU,MAAM,CAAC,OAAe;IAElC,OAAO,OAAO,CAAC;AACnB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../Source/index.ts"],"names":[],"mappings":"AAMA,cAAc,YAAY,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../Source/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,cAAc,YAAY,CAAC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sorrell/cli-utilities",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Utilities for CLI tools.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"cli",
|
|
7
|
+
"utility",
|
|
8
|
+
"utilities",
|
|
9
|
+
"typescript",
|
|
10
|
+
"ts",
|
|
11
|
+
"inquirer",
|
|
12
|
+
"ora",
|
|
13
|
+
"commander"
|
|
14
|
+
],
|
|
15
|
+
"homepage": "https://github.com/GageSorrell/SorrellWm#readme",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/GageSorrell/SorrellWm/issues"
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/GageSorrell/SorrellWm.git"
|
|
22
|
+
},
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"author": "Gage Sorrell <gage@sorrell.sh>",
|
|
25
|
+
"type": "module",
|
|
26
|
+
"main": "./Distribution/index.js",
|
|
27
|
+
"types": "./Distribution/**/*.d.ts",
|
|
28
|
+
"exports": [
|
|
29
|
+
"./Distribution/**/*"
|
|
30
|
+
],
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "tsgo -p tsconfig.json"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@types/node": "^25.5.0",
|
|
36
|
+
"@typescript/native-preview": "^7.0.0-dev.20260326.1"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@inquirer/prompts": "^8.3.2",
|
|
40
|
+
"chalk": "^5.6.2",
|
|
41
|
+
"cli-table3": "^0.6.5",
|
|
42
|
+
"clipboardy": "^5.3.1",
|
|
43
|
+
"commander": "^14.0.3",
|
|
44
|
+
"ora": "^9.3.0"
|
|
45
|
+
}
|
|
46
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"rootDir": "./Source",
|
|
4
|
+
"outDir": "./Distribution",
|
|
5
|
+
"module": "nodenext",
|
|
6
|
+
"target": "esnext",
|
|
7
|
+
"lib": [
|
|
8
|
+
"esnext"
|
|
9
|
+
],
|
|
10
|
+
"types": [
|
|
11
|
+
"node"
|
|
12
|
+
],
|
|
13
|
+
"sourceMap": true,
|
|
14
|
+
"declaration": true,
|
|
15
|
+
"declarationMap": true,
|
|
16
|
+
"noUncheckedIndexedAccess": true,
|
|
17
|
+
"exactOptionalPropertyTypes": true,
|
|
18
|
+
"noImplicitReturns": true,
|
|
19
|
+
"noImplicitOverride": true,
|
|
20
|
+
"noUnusedLocals": true,
|
|
21
|
+
"noUnusedParameters": true,
|
|
22
|
+
"noFallthroughCasesInSwitch": true,
|
|
23
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
24
|
+
"strict": true,
|
|
25
|
+
"jsx": "react-jsx",
|
|
26
|
+
"verbatimModuleSyntax": true,
|
|
27
|
+
"isolatedModules": true,
|
|
28
|
+
"noUncheckedSideEffectImports": true,
|
|
29
|
+
"moduleDetection": "force",
|
|
30
|
+
"skipLibCheck": true
|
|
31
|
+
},
|
|
32
|
+
"include": [ "Source" ],
|
|
33
|
+
"exclude": [ "node_modules" ]
|
|
34
|
+
}
|