electron-debug-skill 1.0.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/dist/types.js ADDED
@@ -0,0 +1,2 @@
1
+ // CDP Types
2
+ export {};
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "electron-debug-skill",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "description": "Claude Code Skill for debugging Electron applications using Chrome DevTools Protocol (CDP)",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "electron-debug": "./bin/cli.js",
9
+ "electron-debug-daemon": "./bin/daemon.js"
10
+ },
11
+ "scripts": {
12
+ "test": "echo 'No tests specified'"
13
+ },
14
+ "keywords": [
15
+ "electron",
16
+ "debug",
17
+ "cdp",
18
+ "chrome-devtools",
19
+ "claude-code",
20
+ "skill"
21
+ ],
22
+ "author": "kvenLin",
23
+ "license": "MIT",
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "https://github.com/kvenLin/electron-debug.git"
27
+ },
28
+ "engines": {
29
+ "node": ">=18.0.0"
30
+ },
31
+ "dependencies": {
32
+ "ws": "^8.16.0"
33
+ }
34
+ }