@ottttto/dsh-scheduled-send 0.2.0 → 0.2.2
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/cordis.patch.yml +6 -1
- package/dsh.plugin.json +16 -0
- package/package.json +4 -3
package/cordis.patch.yml
CHANGED
|
@@ -2,10 +2,15 @@
|
|
|
2
2
|
# Note: this insert row mounts a fresh plugin; it does NOT override existing
|
|
3
3
|
# loader rows, so no config re-statement is required.
|
|
4
4
|
#
|
|
5
|
+
# IMPORTANT: `name` must be the exact npm package name — the loader resolves
|
|
6
|
+
# it as a package import from ~/.dsh/profiles/web/node_modules. The bare name
|
|
7
|
+
# "dsh-scheduled-send" breaks npm/market installs (ERR_MODULE_NOT_FOUND on
|
|
8
|
+
# machines without the local path install); the scoped name must be quoted.
|
|
9
|
+
#
|
|
5
10
|
# No config block here on purpose: apply() resolves the data directory itself
|
|
6
11
|
# ($HOME/.dsh/dsh-scheduled-send). Loader patch values are applied literally —
|
|
7
12
|
# brace-style {{ }} template placeholders are NOT evaluated, and a template
|
|
8
13
|
# dataDir would create a literally-named placeholder directory.
|
|
9
14
|
- insert:
|
|
10
15
|
- id: dsh-scheduled-send
|
|
11
|
-
name: dsh-scheduled-send
|
|
16
|
+
name: "@ottttto/dsh-scheduled-send"
|
package/dsh.plugin.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "@ottttto/dsh-scheduled-send",
|
|
3
|
+
"version": "0.2.2",
|
|
4
|
+
"main": "./src/index.js",
|
|
5
|
+
"description": "定时发送:到点以你的身份把消息作为正常用户气泡发进当前会话,无人值守、会话隔离、断电补发。Scheduled send for DSH — fires as a normal user bubble into the bound conversation, unattended, per-session isolated, restart-safe.",
|
|
6
|
+
"engines": {
|
|
7
|
+
"dsh": ">=0.1.0"
|
|
8
|
+
},
|
|
9
|
+
"contributes": {
|
|
10
|
+
"tools": [],
|
|
11
|
+
"skills": []
|
|
12
|
+
},
|
|
13
|
+
"client": {
|
|
14
|
+
"main": "./lib/client.js"
|
|
15
|
+
}
|
|
16
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ottttto/dsh-scheduled-send",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "DSH plugin: scheduled sending (⏰ composer button, dock list of pending tasks, due-time delivery as a normal user bubble)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.js",
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
"lib",
|
|
16
16
|
"cordis.patch.yml",
|
|
17
17
|
"package.json",
|
|
18
|
-
"README.md"
|
|
18
|
+
"README.md",
|
|
19
|
+
"dsh.plugin.json"
|
|
19
20
|
],
|
|
20
21
|
"repository": {
|
|
21
22
|
"type": "git",
|
|
@@ -50,4 +51,4 @@
|
|
|
50
51
|
"engines": {
|
|
51
52
|
"node": ">=18"
|
|
52
53
|
}
|
|
53
|
-
}
|
|
54
|
+
}
|