@yuanchilin/dsh-mailbox 0.0.2 → 0.0.3
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/bin/mailbox.mjs +0 -0
- package/package.json +10 -1
package/bin/mailbox.mjs
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuanchilin/dsh-mailbox",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "DeepSeek Harness cross-session file mailbox: send/recv/status tools over a shared filesystem mailbox (N participants, directed & broadcast routing, seen dedup, TTL cleanup, session directory & presence), a /mailbox slash command with popup completion, a plugin-native wake watcher, a zero-dependency node CLI and a packaged DSH skill.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/yuanchilin/dsh-mailbox.git"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/yuanchilin/dsh-mailbox",
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/yuanchilin/dsh-mailbox/issues"
|
|
12
|
+
},
|
|
5
13
|
"type": "module",
|
|
6
14
|
"main": "lib/index.js",
|
|
7
15
|
"types": "lib/types/index.d.ts",
|
|
@@ -37,6 +45,7 @@
|
|
|
37
45
|
"scripts": {
|
|
38
46
|
"build": "node scripts/build.mjs",
|
|
39
47
|
"watch:client": "tsdown --watch",
|
|
48
|
+
"prepublishOnly": "node scripts/check-publish-env.mjs",
|
|
40
49
|
"test": "node --test --test-isolation=none \"test/*.test.js\""
|
|
41
50
|
},
|
|
42
51
|
"keywords": [
|