@traceroot-ai/traceroot 0.1.0-alpha.1 → 0.1.0-alpha.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.
- package/README.md +27 -0
- package/package.json +7 -2
package/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# TraceRoot TypeScript SDK
|
|
2
|
+
|
|
3
|
+
[![Y Combinator][y-combinator-image]][y-combinator-url]
|
|
4
|
+
[![License][license-image]][license-url]
|
|
5
|
+
[![X (Twitter)][twitter-image]][twitter-url]
|
|
6
|
+
[![Discord][discord-image]][discord-url]
|
|
7
|
+
[![Documentation][docs-image]][docs-url]
|
|
8
|
+
[![npm SDK Downloads][npm-sdk-downloads-image]][npm-sdk-downloads-url]
|
|
9
|
+
|
|
10
|
+
# Documentation
|
|
11
|
+
|
|
12
|
+
Please see the [TypeScript SDK Docs](https://traceroot.ai/docs/tracing/get-started) for details.
|
|
13
|
+
|
|
14
|
+
<!-- Links -->
|
|
15
|
+
|
|
16
|
+
[discord-image]: https://img.shields.io/discord/1395844148568920114?logo=discord&labelColor=%235462eb&logoColor=%23f5f5f5&color=%235462eb
|
|
17
|
+
[discord-url]: https://discord.gg/tPyffEZvvJ
|
|
18
|
+
[docs-image]: https://img.shields.io/badge/docs-traceroot.ai-0dbf43
|
|
19
|
+
[docs-url]: https://traceroot.ai/docs/tracing/get-started
|
|
20
|
+
[license-image]: https://img.shields.io/badge/License-Apache%202.0-blue.svg
|
|
21
|
+
[license-url]: https://opensource.org/licenses/Apache-2.0
|
|
22
|
+
[npm-sdk-downloads-image]: https://img.shields.io/npm/dm/%40traceroot-ai%2Ftraceroot
|
|
23
|
+
[npm-sdk-downloads-url]: https://www.npmjs.com/package/@traceroot-ai/traceroot
|
|
24
|
+
[twitter-image]: https://img.shields.io/twitter/follow/TracerootAI
|
|
25
|
+
[twitter-url]: https://x.com/TracerootAI
|
|
26
|
+
[y-combinator-image]: https://img.shields.io/badge/Combinator-S25-orange?logo=ycombinator&labelColor=white
|
|
27
|
+
[y-combinator-url]: https://www.ycombinator.com/companies/traceroot-ai
|
package/package.json
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@traceroot-ai/traceroot",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.2",
|
|
4
4
|
"description": "TraceRoot TypeScript SDK for AI observability",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"traceroot",
|
|
7
|
+
"sdk"
|
|
8
|
+
],
|
|
5
9
|
"license": "Apache-2.0",
|
|
6
10
|
"engines": {
|
|
7
11
|
"node": ">=20"
|
|
@@ -9,7 +13,8 @@
|
|
|
9
13
|
"main": "dist/index.js",
|
|
10
14
|
"types": "dist/index.d.ts",
|
|
11
15
|
"files": [
|
|
12
|
-
"dist"
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md"
|
|
13
18
|
],
|
|
14
19
|
"exports": {
|
|
15
20
|
".": {
|