@probebrowser/trace 1.5.3 → 1.5.4
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/LICENSE +53 -0
- package/dist/index.js +1 -1
- package/package.json +3 -2
package/LICENSE
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
Proprietary License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Probe Browser
|
|
4
|
+
|
|
5
|
+
All rights reserved.
|
|
6
|
+
|
|
7
|
+
NOTICE TO USERS: This CLI tool is proprietary software. While it is distributed
|
|
8
|
+
via npm for ease of installation, all rights are reserved by Probe Browser.
|
|
9
|
+
|
|
10
|
+
1. PERMITTED USE
|
|
11
|
+
- You may install and use this CLI tool for debugging and development purposes
|
|
12
|
+
- You must have a valid Trace API key or BYOK (Bring Your Own Key) setup
|
|
13
|
+
- Commercial use is permitted when properly licensed through probebrowser.com
|
|
14
|
+
|
|
15
|
+
2. RESTRICTIONS
|
|
16
|
+
You may NOT:
|
|
17
|
+
- Reverse engineer, decompile, or disassemble this software
|
|
18
|
+
- Redistribute, sublicense, or sell this software
|
|
19
|
+
- Remove or modify any proprietary notices or labels
|
|
20
|
+
- Create derivative works based on this software
|
|
21
|
+
- Use this software to compete with Probe Browser products
|
|
22
|
+
- Extract or reuse any code, algorithms, or functionality
|
|
23
|
+
|
|
24
|
+
3. SOURCE CODE
|
|
25
|
+
The source code is NOT open source. All code, including any code published
|
|
26
|
+
in public repositories, remains proprietary and confidential trade secrets
|
|
27
|
+
of Probe Browser.
|
|
28
|
+
|
|
29
|
+
4. INTELLECTUAL PROPERTY
|
|
30
|
+
All trademarks, service marks, logos, and trade names are proprietary to
|
|
31
|
+
Probe Browser. "Trace" and "Probe Browser" are registered trademarks.
|
|
32
|
+
|
|
33
|
+
5. TERMINATION
|
|
34
|
+
Your license to use this software terminates automatically if you violate
|
|
35
|
+
any of these restrictions. Upon termination, you must uninstall and destroy
|
|
36
|
+
all copies of the software.
|
|
37
|
+
|
|
38
|
+
6. NO WARRANTY
|
|
39
|
+
THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
40
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
41
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
42
|
+
|
|
43
|
+
7. LIMITATION OF LIABILITY
|
|
44
|
+
IN NO EVENT SHALL PROBE BROWSER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
45
|
+
LIABILITY ARISING FROM THE USE OF THIS SOFTWARE.
|
|
46
|
+
|
|
47
|
+
For commercial licensing, enterprise plans, or questions:
|
|
48
|
+
Email: legal@probebrowser.com
|
|
49
|
+
Website: https://www.probebrowser.com/trace
|
|
50
|
+
|
|
51
|
+
Unauthorized use, copying, or distribution of this software is strictly
|
|
52
|
+
prohibited and will result in immediate termination of your license and
|
|
53
|
+
may subject you to civil and criminal penalties.
|
package/dist/index.js
CHANGED
|
@@ -9,7 +9,7 @@ import chalk from 'chalk';
|
|
|
9
9
|
import ora from 'ora';
|
|
10
10
|
import readline from 'readline';
|
|
11
11
|
import { Trace } from '../../sdk/dist/index.js';
|
|
12
|
-
const VERSION = '1.5.
|
|
12
|
+
const VERSION = '1.5.4';
|
|
13
13
|
// ============================================
|
|
14
14
|
// LOGGING HELPERS
|
|
15
15
|
// ============================================
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@probebrowser/trace",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.4",
|
|
4
4
|
"description": "Trace - Debugging Intelligence for Distributed Systems",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
},
|
|
54
54
|
"files": [
|
|
55
55
|
"dist",
|
|
56
|
-
"README.md"
|
|
56
|
+
"README.md",
|
|
57
|
+
"LICENSE"
|
|
57
58
|
]
|
|
58
59
|
}
|