autotel-devtools 6.2.0 → 6.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/LICENSE +21 -0
- package/dist/cli.cjs +0 -0
- package/package.json +16 -17
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Jag Reehal 2025
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/dist/cli.cjs
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "autotel-devtools",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.1",
|
|
4
4
|
"description": "Standalone OTLP receiver with web UI for local development",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -47,19 +47,6 @@
|
|
|
47
47
|
"dashboard",
|
|
48
48
|
"widget"
|
|
49
49
|
],
|
|
50
|
-
"scripts": {
|
|
51
|
-
"build": "tsup && vite build --config vite.widget.config.ts",
|
|
52
|
-
"dev": "tsup --watch",
|
|
53
|
-
"type-check": "svelte-check --tsconfig ./tsconfig.json && tsc --noEmit",
|
|
54
|
-
"lint": "eslint src/",
|
|
55
|
-
"test": "vitest run --config vitest.config.ts --project server && vitest run --config vitest.config.ts --project widget && vitest run --config vitest.storybook.config.ts",
|
|
56
|
-
"test:storybook": "vitest run --config vitest.storybook.config.ts",
|
|
57
|
-
"test:watch": "vitest --config vitest.config.ts",
|
|
58
|
-
"test:dist": "node scripts/check-dist-esm.mjs",
|
|
59
|
-
"storybook": "storybook dev -p 6006",
|
|
60
|
-
"build-storybook": "storybook build",
|
|
61
|
-
"prepublishOnly": "pnpm build && pnpm test:dist"
|
|
62
|
-
},
|
|
63
50
|
"dependencies": {
|
|
64
51
|
"clsx": "^2.1.1",
|
|
65
52
|
"@lucide/svelte": "^1.17.0",
|
|
@@ -103,7 +90,7 @@
|
|
|
103
90
|
"vitest-mock-extended": "^4.0.0"
|
|
104
91
|
},
|
|
105
92
|
"peerDependencies": {
|
|
106
|
-
"autotel": "
|
|
93
|
+
"autotel": "3.4.4"
|
|
107
94
|
},
|
|
108
95
|
"peerDependenciesMeta": {
|
|
109
96
|
"autotel": {
|
|
@@ -115,5 +102,17 @@
|
|
|
115
102
|
"url": "https://github.com/jagreehal/autotel",
|
|
116
103
|
"directory": "packages/autotel-devtools"
|
|
117
104
|
},
|
|
118
|
-
"license": "MIT"
|
|
119
|
-
|
|
105
|
+
"license": "MIT",
|
|
106
|
+
"scripts": {
|
|
107
|
+
"build": "tsup && vite build --config vite.widget.config.ts",
|
|
108
|
+
"dev": "tsup --watch",
|
|
109
|
+
"type-check": "svelte-check --tsconfig ./tsconfig.json && tsc --noEmit",
|
|
110
|
+
"lint": "eslint src/",
|
|
111
|
+
"test": "vitest run --config vitest.config.ts --project server && vitest run --config vitest.config.ts --project widget && vitest run --config vitest.storybook.config.ts",
|
|
112
|
+
"test:storybook": "vitest run --config vitest.storybook.config.ts",
|
|
113
|
+
"test:watch": "vitest --config vitest.config.ts",
|
|
114
|
+
"test:dist": "node scripts/check-dist-esm.mjs",
|
|
115
|
+
"storybook": "storybook dev -p 6006",
|
|
116
|
+
"build-storybook": "storybook build"
|
|
117
|
+
}
|
|
118
|
+
}
|