@lynxops/sdk 1.0.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/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@lynxops/sdk",
3
+ "version": "1.0.2",
4
+ "description": "TypeScript SDK for tracing, debugging, and governing AI agent runs with Lynx.",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "scripts": {
20
+ "build": "tsup src/index.ts --format cjs,esm --clean --dts",
21
+ "obfuscate": "javascript-obfuscator ./dist/index.js --output ./dist/index.js --config obfuscator.config.json && javascript-obfuscator ./dist/index.cjs --output ./dist/index.cjs --config obfuscator.config.json",
22
+ "build:prod": "pnpm build && pnpm obfuscate",
23
+ "check-types": "tsc --noEmit",
24
+ "test": "pnpm build && node --test test/*.mjs"
25
+ },
26
+ "keywords": [
27
+ "ai",
28
+ "agent",
29
+ "observability",
30
+ "tracing",
31
+ "debugging",
32
+ "guardrails",
33
+ "lynx"
34
+ ],
35
+ "author": "Lynx",
36
+ "license": "ISC",
37
+ "devDependencies": {
38
+ "@types/node": "^25.9.1",
39
+ "javascript-obfuscator": "^4.1.1",
40
+ "tsup": "^8.3.5",
41
+ "typescript": "^5.0.0"
42
+ },
43
+ "dependencies": {},
44
+ "repository": {
45
+ "type": "git",
46
+ "url": "git+https://github.com/hvnn-oss/lynx-sdk.git"
47
+ },
48
+ "bugs": {
49
+ "url": "https://github.com/hvnn-oss/lynx-sdk/issues"
50
+ },
51
+ "homepage": "https://github.com/hvnn-oss/lynx-sdk#readme",
52
+ "publishConfig": {
53
+ "access": "public",
54
+ "provenance": true
55
+ }
56
+ }