@phaseo/devtools-viewer 0.2.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 DevTools Viewer
2
+
3
+ Phaseo is the new name for AI Stats.
4
+
5
+ This package reserves `@phaseo/devtools-viewer` and forwards to the current DevTools viewer from `@ai-stats/devtools-viewer` during the package migration.
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ import "@ai-stats/devtools-viewer";
@@ -0,0 +1 @@
1
+ export * from "@ai-stats/devtools-viewer";
package/dist/index.js ADDED
@@ -0,0 +1 @@
1
+ export * from "@ai-stats/devtools-viewer";
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "@phaseo/devtools-viewer",
3
+ "version": "0.2.1",
4
+ "description": "Phaseo DevTools viewer transition package.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "bin": {
8
+ "phaseo-devtools": "bin/phaseo-devtools.js",
9
+ "ai-stats-devtools": "bin/phaseo-devtools.js"
10
+ },
11
+ "main": "./dist/index.js",
12
+ "types": "./dist/index.d.ts",
13
+ "files": [
14
+ "bin",
15
+ "dist",
16
+ "README.md"
17
+ ],
18
+ "dependencies": {
19
+ "@ai-stats/devtools-viewer": "0.2.1"
20
+ },
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/phaseoteam/Phaseo.git"
24
+ },
25
+ "publishConfig": {
26
+ "access": "public"
27
+ }
28
+ }