@a9i5k4/dsh-literature 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,69 @@
1
+ {
2
+ "name": "@a9i5k4/dsh-literature",
3
+ "version": "0.1.0",
4
+ "description": "DSH Literature 文献侧窗:在 DeepSeek Harness 侧边栏识别 DOI/arXiv/标题、抓取元数据与全文、写入本地文献库或导出目录,并提供内置 PDF 阅读器(缩放/翻页/目录/搜索/高亮/笔记)。",
5
+ "type": "module",
6
+ "main": "lib/index.js",
7
+ "exports": {
8
+ ".": "./lib/index.js",
9
+ "./client": "./lib/client.js",
10
+ "./package.json": "./package.json"
11
+ },
12
+ "files": [
13
+ "lib",
14
+ "cordis.patch.yml",
15
+ "README.md",
16
+ "LICENSE"
17
+ ],
18
+ "scripts": {
19
+ "build": "node build.mjs",
20
+ "watch": "node build.mjs --watch",
21
+ "smoke": "node scripts/smoke.mjs",
22
+ "test": "node scripts/test-host.mjs",
23
+ "check:client": "node scripts/check-client.mjs",
24
+ "prepublishOnly": "node build.mjs && node scripts/smoke.mjs && node scripts/check-client.mjs && node scripts/test-host.mjs"
25
+ },
26
+ "dsh": {
27
+ "bundle": {
28
+ "patch": "./cordis.patch.yml"
29
+ },
30
+ "client": {
31
+ "inject": [
32
+ "@deepseek-ai/dsh-client-runtime",
33
+ "@deepseek-ai/dsh-client-connection",
34
+ "@deepseek-ai/dsh-client-ui-sidebar",
35
+ "@deepseek-ai/dsh-client-ui-settings",
36
+ "@deepseek-ai/dsh-client-locale"
37
+ ],
38
+ "platform": "web"
39
+ }
40
+ },
41
+ "keywords": [
42
+ "dsh",
43
+ "deepseek-harness",
44
+ "literature",
45
+ "paper",
46
+ "plugin",
47
+ "pdf",
48
+ "reader",
49
+ "reference",
50
+ "zotero",
51
+ "citations"
52
+ ],
53
+ "repository": {
54
+ "type": "git",
55
+ "url": "git+https://github.com/Aik358/dsh-literature.git"
56
+ },
57
+ "bugs": {
58
+ "url": "https://github.com/Aik358/dsh-literature/issues"
59
+ },
60
+ "homepage": "https://github.com/Aik358/dsh-literature#readme",
61
+ "peerDependencies": {
62
+ "@deepseek-ai/cordis": "^4.0.1"
63
+ },
64
+ "devDependencies": {
65
+ "esbuild": "^0.28.2",
66
+ "pdfjs-dist": "^6.3.289"
67
+ },
68
+ "license": "MIT"
69
+ }