@myskyline_ai/ccdebug 0.2.1 → 0.2.2

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.
Files changed (2) hide show
  1. package/package.json +1 -2
  2. package/web/package.json +0 -47
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@myskyline_ai/ccdebug",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "跟踪记录CC请求,可针对特定请求反复调试验证,以更直观的时间线形式展示CC日志",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -35,7 +35,6 @@
35
35
  "web/server/**/*.map",
36
36
  "web/index.html",
37
37
  "web/debug.html",
38
- "web/package.json",
39
38
  "README.md"
40
39
  ],
41
40
  "keywords": [
package/web/package.json DELETED
@@ -1,47 +0,0 @@
1
- {
2
- "name": "ccdebug-web",
3
- "version": "1.0.0",
4
- "description": "Web timeline interface for Claude Code Debug",
5
- "type": "module",
6
- "files": [
7
- "dist/**/*",
8
- "server/**/*",
9
- "public/**/*",
10
- "index.html",
11
- "vite.config.*",
12
- "tsconfig.*",
13
- "!node_modules",
14
- "!src",
15
- "!.DS_Store",
16
- "!.gitignore"
17
- ],
18
- "scripts": {
19
- "dev": "vite --host --port 3002",
20
- "build": "vite build",
21
- "build:check": "vue-tsc --noEmit && vite build",
22
- "preview": "vite preview",
23
- "serve": "node dist/server.js"
24
- },
25
- "dependencies": {
26
- "@arco-design/web-vue": "^2.55.0",
27
- "axios": "^1.6.0",
28
- "chokidar": "^3.5.3",
29
- "cors": "^2.8.5",
30
- "express": "^4.18.2",
31
- "pinia": "^2.1.7",
32
- "socket.io": "^4.7.4",
33
- "socket.io-client": "^4.7.4",
34
- "vue": "^3.4.0",
35
- "vue-router": "^4.5.1",
36
- "node-fetch": "^3.3"
37
- },
38
- "devDependencies": {
39
- "@types/cors": "^2.8.17",
40
- "@types/express": "^4.17.21",
41
- "@types/node": "^20.10.0",
42
- "@vitejs/plugin-vue": "^4.5.0",
43
- "typescript": "^5.2.0",
44
- "vite": "^5.0.0",
45
- "vue-tsc": "^1.8.25"
46
- }
47
- }