@phaseo/cli 0.1.1

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/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # Phaseo CLI
2
+
3
+ Phaseo is the new name for AI Stats.
4
+
5
+ This package reserves `@phaseo/cli` and forwards to the current CLI implementation from `@ai-stats/cli` during the package migration.
package/bin/phaseo.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ import "@ai-stats/cli";
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@phaseo/cli",
3
+ "version": "0.1.1",
4
+ "description": "Phaseo command line interface transition package.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "bin": {
8
+ "phaseo": "bin/phaseo.js",
9
+ "aistats": "bin/phaseo.js"
10
+ },
11
+ "files": [
12
+ "bin",
13
+ "README.md"
14
+ ],
15
+ "dependencies": {
16
+ "@ai-stats/cli": "0.1.1"
17
+ },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/phaseoteam/Phaseo.git"
21
+ },
22
+ "publishConfig": {
23
+ "access": "public"
24
+ }
25
+ }