dsh-projects-panel 0.1.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/package.json ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "dsh-projects-panel",
3
+ "version": "0.1.0",
4
+ "description": "DeepSeek Harness projects panel plugin",
5
+ "type": "module",
6
+ "main": "lib/index.js",
7
+ "types": "lib/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./lib/index.d.ts",
11
+ "default": "./lib/index.js"
12
+ },
13
+ "./client": {
14
+ "types": "./lib/client.d.ts",
15
+ "default": "./lib/client.js"
16
+ },
17
+ "./cordis.patch.yml": "./cordis.patch.yml",
18
+ "./package.json": "./package.json"
19
+ },
20
+ "files": [
21
+ "lib",
22
+ "cordis.patch.yml",
23
+ "package.json"
24
+ ],
25
+ "scripts": {
26
+ "build": "pnpm typecheck && tsdown && node scripts/wrap-client.mjs && node scripts/check-client-bundle.mjs",
27
+ "typecheck": "tsc -b tsconfig.json",
28
+ "test": "vitest run",
29
+ "test:coverage": "vitest run --coverage",
30
+ "lint": "oxlint src tests scripts",
31
+ "check:style": "node scripts/check-style.mjs",
32
+ "check:bundle": "node scripts/check-client-bundle.mjs",
33
+ "verify:i18n": "node scripts/verify-i18n.mjs",
34
+ "prepare": "lefthook install"
35
+ },
36
+ "packageManager": "pnpm@11.25.0",
37
+ "dsh": {
38
+ "bundle": {
39
+ "patch": "./cordis.patch.yml"
40
+ },
41
+ "client": {
42
+ "platform": "web",
43
+ "inject": [
44
+ "@deepseek-ai/dsh-client-locale",
45
+ "@deepseek-ai/dsh-client-ui-renderer",
46
+ "@deepseek-ai/dsh-client-ui-sidebar",
47
+ "@deepseek-ai/dsh-client-ui-workspace",
48
+ "@deepseek-ai/dsh-api-remotes",
49
+ "@deepseek-ai/dsh-api-session-controller",
50
+ "@deepseek-ai/dsh-api-workspace-controller"
51
+ ]
52
+ }
53
+ },
54
+ "peerDependencies": {
55
+ "@deepseek-ai/cordis": "^4.0.2",
56
+ "@deepseek-ai/dsh-client-locale": "^0.1.5-rc.2"
57
+ },
58
+ "devDependencies": {
59
+ "@deepseek-ai/cordis": "^4.0.2",
60
+ "@deepseek-ai/schemastery": "^3.18.2",
61
+ "@types/node": "^22.0.0",
62
+ "@types/react": "^18.3.0",
63
+ "@types/react-dom": "^18.3.7",
64
+ "@vitest/coverage-v8": "^3.2.7",
65
+ "happy-dom": "^20.12.0",
66
+ "lefthook": "^2.1.12",
67
+ "oxlint": "^1.80.0",
68
+ "react": "^18.3.1",
69
+ "react-dom": "^18.3.1",
70
+ "tsdown": "^0.15.0",
71
+ "typescript": "^5.8.0",
72
+ "vitest": "^3.2.0"
73
+ },
74
+ "dependencies": {
75
+ "@deepseek-ai/schemastery": "^3.18.2"
76
+ }
77
+ }