-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "dsh-video-player",
"version": "0.1.1",
"description": "Floating, draggable, resizable video scene player for DeepSeek Harness. Plays scene-per-MP4 clips from a Stash-style scene server, plus best-effort YouTube / Twitch / Jellyfin / custom links.",
"type": "module",
"main": "lib/index.js",
"license": "MIT",
"keywords": [
"deepseek",
"harness",
"dsh",
"dsh-plugin",
"video",
"player",
"stash",
"pip"
],
"repository": {
"type": "git",
"url": "git+https://github.com/IP050/dsh-video-player.git"
},
"homepage": "https://github.com/IP050/dsh-video-player#readme",
"bugs": {
"url": "https://github.com/IP050/dsh-video-player/issues"
},
"exports": {
".": {
"default": "./lib/index.js"
},
"./client": {
"default": "./lib/client.js"
},
"./package.json": "./package.json"
},
"dsh": {
"engines": {
"dsh": ">=0.1.1-rc.1"
},
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [],
"platform": "web",
"immediately": true
}
},
"files": [
"lib",
"assets",
"cordis.patch.yml",
"README.md",
"PITFALLS.md",
"LICENSE"
]
}