@wjj-8283/dsh-temp-workspace 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,68 @@
1
+ {
2
+ "name": "@wjj-8283/dsh-temp-workspace",
3
+ "version": "0.1.0",
4
+ "description": "DSH web client plugin: a temporary workspace (临时工作区) — every conversation it contains is deleted at the next Harness restart (immediately or after a delay), optionally behind a confirm dialog. Adds a small icon beside the sidebar's \"Add workspace\" button and a Settings -> Plugins card.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "publishConfig": {
8
+ "access": "public"
9
+ },
10
+ "author": "wjj-8283 <wlw20070926@outlook.com>",
11
+ "homepage": "https://github.com/wjj-8283/dsh-temp-workspace",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/wjj-8283/dsh-temp-workspace.git"
15
+ },
16
+ "keywords": [
17
+ "dsh",
18
+ "dsh-plugin",
19
+ "deepseek-harness",
20
+ "deepseek",
21
+ "harness-plugin",
22
+ "workspace",
23
+ "temporary-workspace",
24
+ "temp-workspace",
25
+ "session",
26
+ "cleanup"
27
+ ],
28
+ "engines": {
29
+ "node": ">=22.19"
30
+ },
31
+ "scripts": {
32
+ "build": "node build.mjs",
33
+ "build:watch": "node build.mjs --watch",
34
+ "check": "node build.mjs --check",
35
+ "prepublishOnly": "node build.mjs"
36
+ },
37
+ "exports": {
38
+ ".": "./lib/index.js",
39
+ "./client": "./lib/client.js",
40
+ "./src/*": "./src/*",
41
+ "./package.json": "./package.json"
42
+ },
43
+ "dsh": {
44
+ "bundle": {
45
+ "patch": "./cordis.patch.yml"
46
+ },
47
+ "client": {
48
+ "platform": "web",
49
+ "inject": [
50
+ "workspaces",
51
+ "slots",
52
+ "locale"
53
+ ]
54
+ }
55
+ },
56
+ "files": [
57
+ "lib",
58
+ "src",
59
+ "cordis.patch.yml"
60
+ ],
61
+ "main": "./lib/index.js",
62
+ "directories": {
63
+ "lib": "lib"
64
+ },
65
+ "bugs": {
66
+ "url": "https://github.com/wjj-8283/dsh-temp-workspace/issues"
67
+ }
68
+ }