dr-debug 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.
- package/LICENSE +21 -0
- package/README.md +92 -0
- package/dist/DrDebug.d.ts +51 -0
- package/dist/DrDebug.d.ts.map +1 -0
- package/dist/DrDebug.js +312 -0
- package/dist/DrDebug.js.map +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +11058 -0
- package/dist/index.js.map +1 -0
- package/dist/standalone.d.ts +17 -0
- package/dist/standalone.d.ts.map +1 -0
- package/dist/standalone.js +10885 -0
- package/dist/standalone.js.map +1 -0
- package/package.json +46 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAuB,MAAM,cAAc,CAAA;AAC3D,cAAc,sBAAsB,CAAA;AACpC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dr. Debug Standalone In-Browser Distribution Bundle
|
|
3
|
+
*
|
|
4
|
+
* Created by Saswat Mohanty (@SazWhatician)
|
|
5
|
+
* GitHub: https://github.com/SazWhatician
|
|
6
|
+
* LinkedIn: https://www.linkedin.com/in/saswat-mohanty-0a4549331/
|
|
7
|
+
*/
|
|
8
|
+
import { DrDebug } from './DrDebug.js';
|
|
9
|
+
declare global {
|
|
10
|
+
interface Window {
|
|
11
|
+
DrDebug: typeof DrDebug;
|
|
12
|
+
__DR_DEBUG__?: DrDebug;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
export { DrDebug };
|
|
16
|
+
export default DrDebug;
|
|
17
|
+
//# sourceMappingURL=standalone.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"standalone.d.ts","sourceRoot":"","sources":["../src/standalone.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAA;AAEtC,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,MAAM;QACd,OAAO,EAAE,OAAO,OAAO,CAAA;QACvB,YAAY,CAAC,EAAE,OAAO,CAAA;KACvB;CACF;AA2BD,OAAO,EAAE,OAAO,EAAE,CAAA;AAClB,eAAe,OAAO,CAAA"}
|