@hirohsu/user-web-feedback 2.8.9 → 2.8.11

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 (34) hide show
  1. package/README.md +953 -953
  2. package/dist/cli.cjs +33309 -46041
  3. package/dist/index.cjs +35773 -48507
  4. package/dist/static/app.js +385 -385
  5. package/dist/static/components/navbar.css +406 -406
  6. package/dist/static/components/navbar.html +49 -49
  7. package/dist/static/components/navbar.js +211 -211
  8. package/dist/static/dashboard.css +495 -495
  9. package/dist/static/dashboard.html +95 -95
  10. package/dist/static/dashboard.js +540 -540
  11. package/dist/static/favicon.svg +27 -27
  12. package/dist/static/index.html +541 -541
  13. package/dist/static/logs.html +376 -376
  14. package/dist/static/logs.js +442 -442
  15. package/dist/static/mcp-settings.html +797 -797
  16. package/dist/static/mcp-settings.js +884 -884
  17. package/dist/static/modules/app-core.js +124 -124
  18. package/dist/static/modules/conversation-panel.js +247 -247
  19. package/dist/static/modules/feedback-handler.js +1420 -1420
  20. package/dist/static/modules/image-handler.js +155 -155
  21. package/dist/static/modules/log-viewer.js +296 -296
  22. package/dist/static/modules/mcp-manager.js +474 -474
  23. package/dist/static/modules/prompt-manager.js +364 -364
  24. package/dist/static/modules/settings-manager.js +299 -299
  25. package/dist/static/modules/socket-manager.js +170 -170
  26. package/dist/static/modules/state-manager.js +352 -352
  27. package/dist/static/modules/timer-controller.js +243 -243
  28. package/dist/static/modules/ui-helpers.js +246 -246
  29. package/dist/static/settings.html +426 -426
  30. package/dist/static/settings.js +767 -767
  31. package/dist/static/style.css +2156 -2156
  32. package/dist/static/terminals.html +357 -357
  33. package/dist/static/terminals.js +321 -321
  34. package/package.json +95 -95
package/package.json CHANGED
@@ -1,95 +1,95 @@
1
- {
2
- "name": "@hirohsu/user-web-feedback",
3
- "version": "2.8.9",
4
- "description": "基於Node.js的MCP回饋收集器 - 支持AI工作彙報和用戶回饋收集",
5
- "main": "dist/index.cjs",
6
- "bin": {
7
- "user-web-feedback": "dist/cli.cjs"
8
- },
9
- "type": "module",
10
- "engines": {
11
- "node": ">=18.0.0"
12
- },
13
- "keywords": [
14
- "mcp",
15
- "feedback",
16
- "ai",
17
- "chat",
18
- "nodejs",
19
- "model-context-protocol",
20
- "claude",
21
- "anthropic"
22
- ],
23
- "author": "user-feedback MCP Tools Team",
24
- "license": "MIT",
25
- "repository": {
26
- "type": "git",
27
- "url": "git+https://github.com/HyperHeroX/user-feedback-web.git"
28
- },
29
- "homepage": "https://github.com/HyperHeroX/user-feedback-web#readme",
30
- "bugs": {
31
- "url": "https://github.com/HyperHeroX/user-feedback-web/issues"
32
- },
33
- "scripts": {
34
- "build": "tsup",
35
- "dev": "tsx watch --clear-screen=false src/cli.ts",
36
- "start": "node dist/cli.js",
37
- "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --maxWorkers=50%",
38
- "test:ci": "node --experimental-vm-modules node_modules/jest/bin/jest.js --maxWorkers=1 --forceExit",
39
- "test:integration": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/__tests__/integration.test.ts --testPathIgnorePatterns=[] --forceExit",
40
- "test:all": "npm run test && npm run test:integration",
41
- "test:watch": "jest --watch",
42
- "lint": "eslint src/ --ext .ts",
43
- "lint:fix": "eslint src/ --ext .ts --fix",
44
- "clean": "node -e \"const fs=require('fs'); if(fs.existsSync('dist')){fs.rmSync('dist', {recursive: true, force: true})}\"",
45
- "prepare-release": "node scripts/prepare-release.cjs",
46
- "prepublishOnly": "npm run clean && npm run build && node scripts/remove-sourcemaps.cjs"
47
- },
48
- "dependencies": {
49
- "@hirohsu/user-web-feedback": "^2.8.2",
50
- "better-sqlite3": "^12.4.1",
51
- "openai": "^6.16.0"
52
- },
53
- "optionalDependencies": {
54
- "@google/generative-ai": "^0.24.1",
55
- "jimp": "^0.22.10"
56
- },
57
- "devDependencies": {
58
- "@modelcontextprotocol/sdk": "^1.12.1",
59
- "@types/better-sqlite3": "^7.6.13",
60
- "@types/compression": "^1.7.3",
61
- "@types/cors": "^2.8.14",
62
- "@types/express": "^4.17.17",
63
- "@types/jest": "^29.5.5",
64
- "@types/marked": "^5.0.2",
65
- "@types/node": "^20.8.0",
66
- "@typescript-eslint/eslint-plugin": "^6.7.0",
67
- "@typescript-eslint/parser": "^6.7.0",
68
- "commander": "^11.1.0",
69
- "compression": "^1.7.4",
70
- "cors": "^2.8.5",
71
- "dotenv": "^16.3.1",
72
- "engine.io": "^6.6.4",
73
- "engine.io-parser": "^5.2.3",
74
- "eslint": "^8.50.0",
75
- "express": "^4.18.2",
76
- "find-free-port": "^2.0.0",
77
- "helmet": "^7.1.0",
78
- "jest": "^29.7.0",
79
- "marked": "^16.4.1",
80
- "open": "^9.1.0",
81
- "socket.io": "^4.7.2",
82
- "sql.js": "^1.13.0",
83
- "ts-jest": "^29.1.1",
84
- "tslib": "^2.6.2",
85
- "tsup": "^8.5.1",
86
- "tsx": "^3.14.0",
87
- "typescript": "^5.2.2",
88
- "zod": "^3.25.76"
89
- },
90
- "files": [
91
- "dist",
92
- "README.md",
93
- "LICENSE"
94
- ]
95
- }
1
+ {
2
+ "name": "@hirohsu/user-web-feedback",
3
+ "version": "2.8.11",
4
+ "description": "基於Node.js的MCP回饋收集器 - 支持AI工作彙報和用戶回饋收集",
5
+ "main": "dist/index.cjs",
6
+ "bin": {
7
+ "user-web-feedback": "dist/cli.cjs"
8
+ },
9
+ "type": "module",
10
+ "engines": {
11
+ "node": ">=18.0.0"
12
+ },
13
+ "keywords": [
14
+ "mcp",
15
+ "feedback",
16
+ "ai",
17
+ "chat",
18
+ "nodejs",
19
+ "model-context-protocol",
20
+ "claude",
21
+ "anthropic"
22
+ ],
23
+ "author": "user-feedback MCP Tools Team",
24
+ "license": "MIT",
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/HyperHeroX/user-feedback-web.git"
28
+ },
29
+ "homepage": "https://github.com/HyperHeroX/user-feedback-web#readme",
30
+ "bugs": {
31
+ "url": "https://github.com/HyperHeroX/user-feedback-web/issues"
32
+ },
33
+ "scripts": {
34
+ "build": "tsup",
35
+ "dev": "tsx watch --clear-screen=false src/cli.ts",
36
+ "start": "node dist/cli.js",
37
+ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --maxWorkers=50%",
38
+ "test:ci": "node --experimental-vm-modules node_modules/jest/bin/jest.js --maxWorkers=1 --forceExit",
39
+ "test:integration": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/__tests__/integration.test.ts --testPathIgnorePatterns=[] --forceExit",
40
+ "test:all": "npm run test && npm run test:integration",
41
+ "test:watch": "jest --watch",
42
+ "lint": "eslint src/ --ext .ts",
43
+ "lint:fix": "eslint src/ --ext .ts --fix",
44
+ "clean": "node -e \"const fs=require('fs'); if(fs.existsSync('dist')){fs.rmSync('dist', {recursive: true, force: true})}\"",
45
+ "prepare-release": "node scripts/prepare-release.cjs",
46
+ "prepublishOnly": "npm run clean && npm run build && node scripts/remove-sourcemaps.cjs"
47
+ },
48
+ "dependencies": {
49
+ "@hirohsu/user-web-feedback": "^2.8.2",
50
+ "better-sqlite3": "^12.4.1",
51
+ "openai": "^6.16.0"
52
+ },
53
+ "optionalDependencies": {
54
+ "@google/generative-ai": "^0.24.1",
55
+ "jimp": "^0.22.10"
56
+ },
57
+ "devDependencies": {
58
+ "@modelcontextprotocol/sdk": "^1.12.1",
59
+ "@types/better-sqlite3": "^7.6.13",
60
+ "@types/compression": "^1.7.3",
61
+ "@types/cors": "^2.8.14",
62
+ "@types/express": "^4.17.17",
63
+ "@types/jest": "^29.5.5",
64
+ "@types/marked": "^5.0.2",
65
+ "@types/node": "^20.8.0",
66
+ "@typescript-eslint/eslint-plugin": "^6.7.0",
67
+ "@typescript-eslint/parser": "^6.7.0",
68
+ "commander": "^11.1.0",
69
+ "compression": "^1.7.4",
70
+ "cors": "^2.8.5",
71
+ "dotenv": "^16.3.1",
72
+ "engine.io": "^6.6.4",
73
+ "engine.io-parser": "^5.2.3",
74
+ "eslint": "^8.50.0",
75
+ "express": "^4.18.2",
76
+ "find-free-port": "^2.0.0",
77
+ "helmet": "^7.1.0",
78
+ "jest": "^29.7.0",
79
+ "marked": "^16.4.1",
80
+ "open": "^9.1.0",
81
+ "socket.io": "^4.7.2",
82
+ "sql.js": "^1.13.0",
83
+ "ts-jest": "^29.1.1",
84
+ "tslib": "^2.6.2",
85
+ "tsup": "^8.5.1",
86
+ "tsx": "^3.14.0",
87
+ "typescript": "^5.2.2",
88
+ "zod": "^3.25.76"
89
+ },
90
+ "files": [
91
+ "dist",
92
+ "README.md",
93
+ "LICENSE"
94
+ ]
95
+ }