dsh-yolo-mode 0.4.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,73 @@
1
+ {
2
+ "name": "dsh-yolo-mode",
3
+ "version": "0.4.0",
4
+ "description": "dsh-yolo-mode —— DeepSeek Harness 双面包插件:当会话处于可写沙箱模式且审批策略为 ask 时,用大模型自动裁决沙箱升权申请,支持内置预设与自定义权限层级,并提供宿主 settings + 自发布设置桥(/yolo-mode)与 Web 客户端 UI。",
5
+ "type": "module",
6
+ "main": "lib/index.js",
7
+ "exports": {
8
+ ".": "./lib/index.js",
9
+ "./bridge": "./lib/bridge-entry.js",
10
+ "./client": "./lib/client/index.js",
11
+ "./package.json": "./package.json"
12
+ },
13
+ "files": [
14
+ "lib",
15
+ "CHANGELOG.md"
16
+ ],
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/SeverusZh/dsh-yolo-mode.git"
20
+ },
21
+ "homepage": "https://github.com/SeverusZh/dsh-yolo-mode",
22
+ "bugs": {
23
+ "url": "https://github.com/SeverusZh/dsh-yolo-mode/issues"
24
+ },
25
+ "license": "MIT",
26
+ "engines": {
27
+ "node": ">=20"
28
+ },
29
+ "keywords": [
30
+ "dsh",
31
+ "deepseek-harness",
32
+ "plugin",
33
+ "approval",
34
+ "sandbox",
35
+ "permissions",
36
+ "llm",
37
+ "yolo",
38
+ "self-hosted"
39
+ ],
40
+ "peerDependencies": {
41
+ "react": "^18.2.0",
42
+ "@deepseek-ai/cordis": "^4.0.1",
43
+ "@deepseek-ai/dsh-llm": "^0.1.0-rc.6",
44
+ "@deepseek-ai/dsh-timeout": "^0.1.0-rc.6",
45
+ "@deepseek-ai/dsh-settings": "^0.1.0-rc.6",
46
+ "@deepseek-ai/dsh-host-apiproxy": "^0.1.0-rc.6",
47
+ "@deepseek-ai/dsh-client-runtime": "^0.1.0-rc.6",
48
+ "@deepseek-ai/dsh-client-connection": "^0.1.0-rc.6",
49
+ "@deepseek-ai/dsh-client-ui-slots": "^0.1.0-rc.6",
50
+ "@deepseek-ai/dsh-client-locale": "^0.1.0-rc.6",
51
+ "@deepseek-ai/dsh-client-web-react": "^0.1.0-rc.6",
52
+ "@deepseek-ai/schemastery": "^3.18.1"
53
+ },
54
+ "devDependencies": {
55
+ "rolldown": "^1.2.4"
56
+ },
57
+ "scripts": {
58
+ "build": "node scripts/build-client.mjs",
59
+ "build:client": "node scripts/build-client.mjs",
60
+ "test": "node --test"
61
+ },
62
+ "dsh": {
63
+ "client": {
64
+ "platform": "web",
65
+ "inject": [
66
+ "slots",
67
+ "locale",
68
+ "connection",
69
+ "remote"
70
+ ]
71
+ }
72
+ }
73
+ }