dsh-plugin-file-actions 0.1.7-alpha.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/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "dsh-plugin-file-actions",
3
+ "version": "0.1.7-alpha.2",
4
+ "description": "Extends the presented-file card menu in the DSH web GUI on macOS, Windows, and Linux: copy relative/absolute path, open the file in detected editors (VS Code, Sublime Text, Rider, ...), open its folder in the platform file manager (Finder/Explorer), and run it in a terminal or open its directory. Right-click (long-press on touch) over session-message links opens type-aware menus: file paths, mailto, http(s) (built-in/system browser), and git/svn clone-to with the official directory picker. App resolution reuses the official open-in-app catalog resolver; visibility follows the official open-in-app probe; icons come from the official icon route.",
5
+ "license": "MIT",
6
+ "author": "cholf5 <cholf5@hotmail.com>",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/cholf5/dsh-plugin-file-actions.git"
10
+ },
11
+ "homepage": "https://github.com/cholf5/dsh-plugin-file-actions#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/cholf5/dsh-plugin-file-actions/issues"
14
+ },
15
+ "type": "module",
16
+ "main": "lib/index.js",
17
+ "exports": {
18
+ ".": "./lib/index.js",
19
+ "./client": "./lib/client.js"
20
+ },
21
+ "files": [
22
+ "lib",
23
+ "cordis.patch.yml"
24
+ ],
25
+ "dependencies": {
26
+ "@deepseek-ai/dsh-host-open-in-app": "0.1.6-alpha.2",
27
+ "@deepseek-ai/dsh-launch-environment": "0.1.6-alpha.2",
28
+ "@deepseek-ai/schemastery": "^3.18.2"
29
+ },
30
+ "dsh": {
31
+ "bundle": {
32
+ "patch": "./cordis.patch.yml"
33
+ },
34
+ "client": {
35
+ "platform": "web",
36
+ "inject": [],
37
+ "external": []
38
+ }
39
+ }
40
+ }