dsh-input-traffic 0.2.7 → 0.2.9
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/README.en.md +47 -6
- package/README.md +60 -9
- package/lib/client.js +158 -104
- package/lib/client.js.map +1 -1
- package/lib/types/client/auto-continue-core.d.ts +103 -0
- package/lib/types/client/auto-continue-core.d.ts.map +1 -0
- package/lib/types/client/auto-continue-core.js +131 -0
- package/lib/types/client/auto-continue-core.js.map +1 -0
- package/lib/types/client/auto-continue-store.d.ts +41 -0
- package/lib/types/client/auto-continue-store.d.ts.map +1 -0
- package/lib/types/client/auto-continue-store.js +93 -0
- package/lib/types/client/auto-continue-store.js.map +1 -0
- package/lib/types/client/freeze-button.d.ts +1 -1
- package/lib/types/client/freeze-button.d.ts.map +1 -1
- package/lib/types/client/freeze-button.js +30 -6
- package/lib/types/client/freeze-button.js.map +1 -1
- package/lib/types/client/freeze-store.d.ts +17 -10
- package/lib/types/client/freeze-store.d.ts.map +1 -1
- package/lib/types/client/freeze-store.js +54 -38
- package/lib/types/client/freeze-store.js.map +1 -1
- package/lib/types/client/index.d.ts.map +1 -1
- package/lib/types/client/index.js +15 -12
- package/lib/types/client/index.js.map +1 -1
- package/lib/types/client/locales.d.ts +1 -0
- package/lib/types/client/locales.d.ts.map +1 -1
- package/lib/types/client/locales.js +2 -0
- package/lib/types/client/locales.js.map +1 -1
- package/lib/types/client/session-guard-bridge.d.ts +18 -0
- package/lib/types/client/session-guard-bridge.d.ts.map +1 -0
- package/lib/types/client/session-guard-bridge.js +42 -0
- package/lib/types/client/session-guard-bridge.js.map +1 -0
- package/lib/types/client/steer-queue-dock.d.ts +9 -3
- package/lib/types/client/steer-queue-dock.d.ts.map +1 -1
- package/lib/types/client/steer-queue-dock.js +6 -5
- package/lib/types/client/steer-queue-dock.js.map +1 -1
- package/package.json +104 -104
package/package.json
CHANGED
|
@@ -1,104 +1,104 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "dsh-input-traffic",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"description": "Busy-time input queue for the DeepSeek Harness web GUI: three-tier (now/next/later) planning, queue editing with drag-to-reorder and concurrency protection, interject (steer) and interrupt, batch clear with confirm, session freeze - a cordis client plugin, no dsh source changes, no PR required",
|
|
6
|
-
"repository": {
|
|
7
|
-
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/drscrewdriver/dsh-input-traffic.git"
|
|
9
|
-
},
|
|
10
|
-
"main": "lib/index.js",
|
|
11
|
-
"types": "lib/types/index.d.ts",
|
|
12
|
-
"exports": {
|
|
13
|
-
".": {
|
|
14
|
-
"types": "./lib/types/index.d.ts",
|
|
15
|
-
"default": "./lib/index.js"
|
|
16
|
-
},
|
|
17
|
-
"./client": {
|
|
18
|
-
"types": "./lib/types/client/index.d.ts",
|
|
19
|
-
"default": "./lib/client.js"
|
|
20
|
-
},
|
|
21
|
-
"./package.json": "./package.json"
|
|
22
|
-
},
|
|
23
|
-
"files": [
|
|
24
|
-
"lib/",
|
|
25
|
-
"cordis.patch.yml",
|
|
26
|
-
"README.md"
|
|
27
|
-
],
|
|
28
|
-
"dsh": {
|
|
29
|
-
"bundle": {
|
|
30
|
-
"patch": "./cordis.patch.yml"
|
|
31
|
-
},
|
|
32
|
-
"client": {
|
|
33
|
-
"inject": [
|
|
34
|
-
"@deepseek-ai/dsh-client-locale",
|
|
35
|
-
"@deepseek-ai/dsh-client-ui-conversation"
|
|
36
|
-
],
|
|
37
|
-
"platform": "web"
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
|
-
"scripts": {
|
|
41
|
-
"build": "tsc -p tsconfig.json && tsdown",
|
|
42
|
-
"test": "vitest run",
|
|
43
|
-
"clean": "node -e \"require('node:fs').rmSync('lib', { recursive: true, force: true })\"",
|
|
44
|
-
"lint": "eslint src tests",
|
|
45
|
-
"lint:fix": "eslint src tests --fix",
|
|
46
|
-
"tdd": "vitest",
|
|
47
|
-
"verify": "npm run lint && npm run test && npm run build && node examples/verify-assembly.mjs"
|
|
48
|
-
},
|
|
49
|
-
"engines": {
|
|
50
|
-
"node": ">=20"
|
|
51
|
-
},
|
|
52
|
-
"license": "MIT",
|
|
53
|
-
"peerDependencies": {
|
|
54
|
-
"@deepseek-ai/cordis": "^4.0.1",
|
|
55
|
-
"@deepseek-ai/dsh-client-locale": "^0.1.0-rc.5",
|
|
56
|
-
"@deepseek-ai/dsh-client-runtime": "^0.1.0-rc.5",
|
|
57
|
-
"@deepseek-ai/dsh-client-ui-conversation": "^0.1.0-rc.5",
|
|
58
|
-
"@deepseek-ai/dsh-client-ui-primitives": "^0.1.0-rc.5",
|
|
59
|
-
"@deepseek-ai/dsh-client-ui-settings": "^0.1.0-rc.5",
|
|
60
|
-
"@deepseek-ai/dsh-client-ui-slots": "^0.1.0-rc.5"
|
|
61
|
-
},
|
|
62
|
-
"peerDependenciesMeta": {
|
|
63
|
-
"@deepseek-ai/cordis": {
|
|
64
|
-
"optional": true
|
|
65
|
-
},
|
|
66
|
-
"@deepseek-ai/dsh-client-locale": {
|
|
67
|
-
"optional": true
|
|
68
|
-
},
|
|
69
|
-
"@deepseek-ai/dsh-client-runtime": {
|
|
70
|
-
"optional": true
|
|
71
|
-
},
|
|
72
|
-
"@deepseek-ai/dsh-client-ui-conversation": {
|
|
73
|
-
"optional": true
|
|
74
|
-
},
|
|
75
|
-
"@deepseek-ai/dsh-client-ui-primitives": {
|
|
76
|
-
"optional": true
|
|
77
|
-
},
|
|
78
|
-
"@deepseek-ai/dsh-client-ui-settings": {
|
|
79
|
-
"optional": true
|
|
80
|
-
},
|
|
81
|
-
"@deepseek-ai/dsh-client-ui-slots": {
|
|
82
|
-
"optional": true
|
|
83
|
-
}
|
|
84
|
-
},
|
|
85
|
-
"devDependencies": {
|
|
86
|
-
"@deepseek-ai/cordis": "^4.0.1",
|
|
87
|
-
"@deepseek-ai/dsh-client-ui-primitives": "^0.0.1-rc.1",
|
|
88
|
-
"@testing-library/dom": "^10.4.1",
|
|
89
|
-
"@testing-library/react": "^16.3.2",
|
|
90
|
-
"@types/node": "^22.20.0",
|
|
91
|
-
"@types/react": "~18.3.1",
|
|
92
|
-
"@types/react-dom": "~18.3.1",
|
|
93
|
-
"eslint": "^9.39.5",
|
|
94
|
-
"eslint-plugin-react": "^7.37.5",
|
|
95
|
-
"eslint-plugin-react-hooks": "^5.2.0",
|
|
96
|
-
"jsdom": "^29.1.1",
|
|
97
|
-
"lightningcss": "^1.32.0",
|
|
98
|
-
"react": "^18.2.0",
|
|
99
|
-
"tsdown": "^0.22.2",
|
|
100
|
-
"typescript": "^6.0.3",
|
|
101
|
-
"typescript-eslint": "^8.67.0",
|
|
102
|
-
"vitest": "^4.1.8"
|
|
103
|
-
}
|
|
104
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-input-traffic",
|
|
3
|
+
"version": "0.2.9",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Busy-time input queue for the DeepSeek Harness web GUI: three-tier (now/next/later) planning, queue editing with drag-to-reorder and concurrency protection, interject (steer) and interrupt, batch clear with confirm, session freeze - a cordis client plugin, no dsh source changes, no PR required",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/drscrewdriver/dsh-input-traffic.git"
|
|
9
|
+
},
|
|
10
|
+
"main": "lib/index.js",
|
|
11
|
+
"types": "lib/types/index.d.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./lib/types/index.d.ts",
|
|
15
|
+
"default": "./lib/index.js"
|
|
16
|
+
},
|
|
17
|
+
"./client": {
|
|
18
|
+
"types": "./lib/types/client/index.d.ts",
|
|
19
|
+
"default": "./lib/client.js"
|
|
20
|
+
},
|
|
21
|
+
"./package.json": "./package.json"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"lib/",
|
|
25
|
+
"cordis.patch.yml",
|
|
26
|
+
"README.md"
|
|
27
|
+
],
|
|
28
|
+
"dsh": {
|
|
29
|
+
"bundle": {
|
|
30
|
+
"patch": "./cordis.patch.yml"
|
|
31
|
+
},
|
|
32
|
+
"client": {
|
|
33
|
+
"inject": [
|
|
34
|
+
"@deepseek-ai/dsh-client-locale",
|
|
35
|
+
"@deepseek-ai/dsh-client-ui-conversation"
|
|
36
|
+
],
|
|
37
|
+
"platform": "web"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "tsc -p tsconfig.json && tsdown",
|
|
42
|
+
"test": "vitest run",
|
|
43
|
+
"clean": "node -e \"require('node:fs').rmSync('lib', { recursive: true, force: true })\"",
|
|
44
|
+
"lint": "eslint src tests",
|
|
45
|
+
"lint:fix": "eslint src tests --fix",
|
|
46
|
+
"tdd": "vitest",
|
|
47
|
+
"verify": "npm run lint && npm run test && npm run build && node examples/verify-assembly.mjs"
|
|
48
|
+
},
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=20"
|
|
51
|
+
},
|
|
52
|
+
"license": "MIT",
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
55
|
+
"@deepseek-ai/dsh-client-locale": "^0.1.0-rc.5",
|
|
56
|
+
"@deepseek-ai/dsh-client-runtime": "^0.1.0-rc.5",
|
|
57
|
+
"@deepseek-ai/dsh-client-ui-conversation": "^0.1.0-rc.5",
|
|
58
|
+
"@deepseek-ai/dsh-client-ui-primitives": "^0.1.0-rc.5",
|
|
59
|
+
"@deepseek-ai/dsh-client-ui-settings": "^0.1.0-rc.5",
|
|
60
|
+
"@deepseek-ai/dsh-client-ui-slots": "^0.1.0-rc.5"
|
|
61
|
+
},
|
|
62
|
+
"peerDependenciesMeta": {
|
|
63
|
+
"@deepseek-ai/cordis": {
|
|
64
|
+
"optional": true
|
|
65
|
+
},
|
|
66
|
+
"@deepseek-ai/dsh-client-locale": {
|
|
67
|
+
"optional": true
|
|
68
|
+
},
|
|
69
|
+
"@deepseek-ai/dsh-client-runtime": {
|
|
70
|
+
"optional": true
|
|
71
|
+
},
|
|
72
|
+
"@deepseek-ai/dsh-client-ui-conversation": {
|
|
73
|
+
"optional": true
|
|
74
|
+
},
|
|
75
|
+
"@deepseek-ai/dsh-client-ui-primitives": {
|
|
76
|
+
"optional": true
|
|
77
|
+
},
|
|
78
|
+
"@deepseek-ai/dsh-client-ui-settings": {
|
|
79
|
+
"optional": true
|
|
80
|
+
},
|
|
81
|
+
"@deepseek-ai/dsh-client-ui-slots": {
|
|
82
|
+
"optional": true
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"devDependencies": {
|
|
86
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
87
|
+
"@deepseek-ai/dsh-client-ui-primitives": "^0.0.1-rc.1",
|
|
88
|
+
"@testing-library/dom": "^10.4.1",
|
|
89
|
+
"@testing-library/react": "^16.3.2",
|
|
90
|
+
"@types/node": "^22.20.0",
|
|
91
|
+
"@types/react": "~18.3.1",
|
|
92
|
+
"@types/react-dom": "~18.3.1",
|
|
93
|
+
"eslint": "^9.39.5",
|
|
94
|
+
"eslint-plugin-react": "^7.37.5",
|
|
95
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
96
|
+
"jsdom": "^29.1.1",
|
|
97
|
+
"lightningcss": "^1.32.0",
|
|
98
|
+
"react": "^18.2.0",
|
|
99
|
+
"tsdown": "^0.22.2",
|
|
100
|
+
"typescript": "^6.0.3",
|
|
101
|
+
"typescript-eslint": "^8.67.0",
|
|
102
|
+
"vitest": "^4.1.8"
|
|
103
|
+
}
|
|
104
|
+
}
|