dsh-context 0.43.0 → 0.45.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/lib/client.js +3605 -1765
- package/lib/index.d.ts +171 -24
- package/lib/index.js +910 -251
- package/package.json +6 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-context",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.45.0",
|
|
4
4
|
"description": "A DeepSeek Harness plugin for context insight and management, with context dashboard and context command, for understanding how the context is made of, and how it evolves.",
|
|
5
5
|
"author": "bowenliang123",
|
|
6
6
|
"repository": {
|
|
@@ -38,13 +38,14 @@
|
|
|
38
38
|
"lint": "oxlint",
|
|
39
39
|
"lint:fix": "oxlint --fix",
|
|
40
40
|
"watch": "bash scripts/watch.sh",
|
|
41
|
+
"web": "bash scripts/web.sh",
|
|
41
42
|
"register": "bash scripts/register.sh",
|
|
42
43
|
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.tests.json",
|
|
43
44
|
"test": "pnpm run typecheck && vitest run --coverage",
|
|
44
45
|
"coverage": "vitest run --coverage",
|
|
45
46
|
"release": "bash scripts/publish.sh",
|
|
46
|
-
"
|
|
47
|
-
"
|
|
47
|
+
"social-preview": "node docs/social-preview/generate.ts",
|
|
48
|
+
"prepare": "husky"
|
|
48
49
|
},
|
|
49
50
|
"dsh": {
|
|
50
51
|
"bundle": {
|
|
@@ -107,9 +108,10 @@
|
|
|
107
108
|
"@stylistic/eslint-plugin": "^5.10.0",
|
|
108
109
|
"@types/node": "^26.2.0",
|
|
109
110
|
"@types/react": "^18.3.31",
|
|
110
|
-
"@types/react-dom": "^
|
|
111
|
+
"@types/react-dom": "^18.3.7",
|
|
111
112
|
"@vitest/coverage-v8": "^4.1.11",
|
|
112
113
|
"eslint-plugin-sonarjs": "^4.2.0",
|
|
114
|
+
"husky": "^9.1.7",
|
|
113
115
|
"jsdom": "^30.0.1",
|
|
114
116
|
"lightningcss": "^1.33.0",
|
|
115
117
|
"oxlint": "1.76.0",
|