@recombine-ai/telescope 0.1.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.
Files changed (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +25 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Telescope
2
+
3
+ Observability suite for Recombine platform and Bosun IDE
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@recombine-ai/telescope",
3
+ "version": "0.1.0",
4
+ "description": "Observability suite for Recombine platform and Bosun IDE",
5
+ "license": "EULA",
6
+ "author": "recombine.ai",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/recombine-ai/platform.git",
10
+ "directory": "packages/telescope"
11
+ },
12
+ "files": [
13
+ "build"
14
+ ],
15
+ "type": "module",
16
+ "exports": {
17
+ ".": "./src/index.ts"
18
+ },
19
+ "publishConfig": {
20
+ "registry": "https://registry.npmjs.org"
21
+ },
22
+ "dependencies": {
23
+ "zod": "^4.4.3"
24
+ }
25
+ }