dsh-webui-studio 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,122 @@
1
+ {
2
+ "name": "dsh-webui-studio",
3
+ "version": "0.1.0",
4
+ "description": "Harmony WebUI Studio with a live DSH preview and an in-host assistant session",
5
+ "keywords": [
6
+ "deepseek",
7
+ "deepseek-harness",
8
+ "dsh",
9
+ "developer-tools",
10
+ "harmony",
11
+ "plugin-development",
12
+ "react",
13
+ "studio",
14
+ "typescript",
15
+ "visual-editor",
16
+ "webui"
17
+ ],
18
+ "homepage": "https://github.com/CH4ACKO3/dsh-webui-studio#readme",
19
+ "bugs": {
20
+ "url": "https://github.com/CH4ACKO3/dsh-webui-studio/issues"
21
+ },
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/CH4ACKO3/dsh-webui-studio.git"
25
+ },
26
+ "license": "MIT",
27
+ "publishConfig": {
28
+ "access": "public",
29
+ "provenance": true,
30
+ "registry": "https://registry.npmjs.org/"
31
+ },
32
+ "type": "module",
33
+ "main": "./lib/index.js",
34
+ "types": "./lib/index.d.ts",
35
+ "exports": {
36
+ ".": {
37
+ "types": "./lib/index.d.ts",
38
+ "default": "./lib/index.js"
39
+ },
40
+ "./package.json": "./package.json"
41
+ },
42
+ "files": [
43
+ "assets",
44
+ "dist",
45
+ "lib",
46
+ "docs",
47
+ "LICENSE",
48
+ "PRODUCT.md",
49
+ "README.md",
50
+ "README.zh-CN.md"
51
+ ],
52
+ "scripts": {
53
+ "build": "npm run build:host && npm run build:browser",
54
+ "build:host": "tsc -p tsconfig.host.json",
55
+ "build:browser": "vite build && vite build -c vite.bridge.config.ts",
56
+ "typecheck": "tsc -p tsconfig.host.json --noEmit && tsc -p tsconfig.browser.json --noEmit && tsc -p tsconfig.bridge.json --noEmit && tsc -p tsconfig.test.json --noEmit",
57
+ "test": "vitest run",
58
+ "test:integration": "npm run build && node test/studio-extension.e2e.ts",
59
+ "check": "npm run typecheck && npm test && npm run test:integration",
60
+ "prepublishOnly": "npm run check",
61
+ "prepare": "npm run build"
62
+ },
63
+ "engines": {
64
+ "node": "^22.22.3 || >=24.11.1"
65
+ },
66
+ "dsh": {
67
+ "plugin": {
68
+ "schemaVersion": 1,
69
+ "displayName": {
70
+ "zh-CN": "DeepSeek WebUI Studio",
71
+ "en": "DeepSeek WebUI Studio"
72
+ },
73
+ "summary": {
74
+ "zh-CN": "在真实 DSH WebUI 预览上构建和测试 Harmony Patch。",
75
+ "en": "Build and test Harmony patches against a live DSH WebUI preview."
76
+ },
77
+ "category": "plugin-development"
78
+ },
79
+ "harmony": {
80
+ "extension": "./lib/index.js"
81
+ }
82
+ },
83
+ "peerDependencies": {
84
+ "@deepseek-ai/cordis": "^4.0.1",
85
+ "@deepseek-ai/dsh-agent": "0.1.0-rc.6",
86
+ "@deepseek-ai/dsh-host-apiproxy": "0.1.0-rc.6",
87
+ "@deepseek-ai/dsh-host-webserver": "0.1.0-rc.6",
88
+ "@deepseek-ai/dsh-session": "0.1.0-rc.6",
89
+ "@deepseek-ai/dsh-subprocess": "0.1.0-rc.6",
90
+ "@deepseek-ai/dsh-system-prompt": "0.1.0-rc.6",
91
+ "@deepseek-ai/dsh-tools": "0.1.0-rc.6"
92
+ },
93
+ "dependencies": {
94
+ "dsh-harmony": "^0.1.3",
95
+ "dsh-harmony-react": "^0.1.0",
96
+ "pnpm": "^10.34.5"
97
+ },
98
+ "devDependencies": {
99
+ "@codemirror/lang-javascript": "^6.2.4",
100
+ "@codemirror/state": "^6.5.2",
101
+ "@codemirror/view": "^6.38.6",
102
+ "@deepseek-ai/cordis": "^4.0.1",
103
+ "@deepseek-ai/dsh": "0.1.0-rc.6",
104
+ "@deepseek-ai/dsh-agent": "0.1.0-rc.6",
105
+ "@deepseek-ai/dsh-host-apiproxy": "0.1.0-rc.6",
106
+ "@deepseek-ai/dsh-host-webserver": "0.1.0-rc.6",
107
+ "@deepseek-ai/dsh-session": "0.1.0-rc.6",
108
+ "@deepseek-ai/dsh-subprocess": "0.1.0-rc.6",
109
+ "@deepseek-ai/dsh-system-prompt": "0.1.0-rc.6",
110
+ "@deepseek-ai/dsh-tools": "0.1.0-rc.6",
111
+ "@types/node": "^24.10.0",
112
+ "@types/react": "^18.3.0",
113
+ "@types/react-dom": "^18.3.0",
114
+ "codemirror": "^6.0.2",
115
+ "react": "^18.3.1",
116
+ "react-dom": "^18.3.1",
117
+ "react-grab": "^0.1.50",
118
+ "typescript": "^6.0.3",
119
+ "vite": "^8.2.1",
120
+ "vitest": "^4.1.10"
121
+ }
122
+ }