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":"standalone.js","sourceRoot":"","sources":["../src/standalone.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAA;AAStC,IAAI,OAAO,MAAM,KAAK,WAAW,EAAE,CAAC;IAClC,MAAM,CAAC,OAAO,GAAG,OAAO,CAAA;IAExB,mEAAmE;IACnE,MAAM,aAAa,GAAG,QAAQ,CAAC,aAAa,CAAA;IAC5C,MAAM,QAAQ,GAAG,CAAC,aAAa,IAAI,aAAa,CAAC,YAAY,CAAC,WAAW,CAAC,KAAK,OAAO,CAAA;IAEtF,IAAI,QAAQ,IAAI,CAAC,MAAM,CAAC,YAAY,EAAE,CAAC;QACrC,MAAM,MAAM,GAAG,aAAa,EAAE,YAAY,CAAC,cAAc,CAAC,IAAI,SAAS,CAAA;QACvE,MAAM,KAAK,GAAG,aAAa,EAAE,YAAY,CAAC,YAAY,CAAC,IAAI,SAAS,CAAA;QACpE,MAAM,CAAC,YAAY,GAAG,IAAI,OAAO,CAAC;YAChC,MAAM;YACN,KAAK;YACL,QAAQ,EAAE,IAAI;YACd,SAAS,EAAE,IAAI;YACf,YAAY,EAAE,IAAI;SACnB,CAAC,CAAA;QACF,OAAO,CAAC,GAAG,CACT,kGAAkG,EAClG,6GAA6G,EAC7G,oDAAoD,CACrD,CAAA;IACH,CAAC;AACH,CAAC;AAED,OAAO,EAAE,OAAO,EAAE,CAAA;AAClB,eAAe,OAAO,CAAA"}
|
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dr-debug",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Autonomous In-Browser AI Debugging & Observability Agent",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./standalone": {
|
|
14
|
+
"types": "./dist/standalone.d.ts",
|
|
15
|
+
"import": "./dist/standalone.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"README.md",
|
|
21
|
+
"LICENSE"
|
|
22
|
+
],
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"zod": "^3.24.1"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "tsc -b tsconfig.json && esbuild src/index.ts --bundle --format=esm --outfile=dist/index.js --external:zod && esbuild src/standalone.ts --bundle --format=esm --outfile=dist/standalone.js --external:zod",
|
|
28
|
+
"typecheck": "tsc --noEmit"
|
|
29
|
+
},
|
|
30
|
+
"keywords": [
|
|
31
|
+
"debugging",
|
|
32
|
+
"ai-agent",
|
|
33
|
+
"devtools",
|
|
34
|
+
"observability",
|
|
35
|
+
"litert",
|
|
36
|
+
"react",
|
|
37
|
+
"browser"
|
|
38
|
+
],
|
|
39
|
+
"author": "Saswat Mohanty (https://github.com/SazWhatician)",
|
|
40
|
+
"homepage": "https://github.com/SazWhatician",
|
|
41
|
+
"repository": {
|
|
42
|
+
"type": "git",
|
|
43
|
+
"url": "https://github.com/SazWhatician/DebugCopilot"
|
|
44
|
+
},
|
|
45
|
+
"license": "MIT"
|
|
46
|
+
}
|