-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.06 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@xgone/dsh-remote",
"version": "0.3.3",
"description": "Remote access & authentication for the DeepSeek Harness web UI: login gate, MFA (TOTP), signed session cookies, role-based access, in-browser directory picker, account management settings. Fully localized (zh/en).",
"type": "module",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./client": "./lib/client.js",
"./package.json": "./package.json"
},
"files": [
"lib",
"cordis.patch.yml",
"README.md",
"README.en.md",
"LICENSE"
],
"scripts": {
"check": "node --check lib/index.js && node --check lib/client.js",
"test": "node --check lib/index.js && node --check lib/client.js && node --test test/gzip.test.js test/remote-file.test.js test/role-gate.test.js test/files-store.test.js test/browser-auth.test.js test/open-path-shape.test.js test/docx-extract.test.js test/file-kind.test.js",
"prepublishOnly": "node --check lib/index.js && node --check lib/client.js && node --test test/gzip.test.js test/remote-file.test.js test/role-gate.test.js test/files-store.test.js test/browser-auth.test.js test/open-path-shape.test.js test/docx-extract.test.js test/file-kind.test.js"
},
"license": "MIT",
"author": "xgone <xl.gone@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/xgone/dsh-remote.git"
},
"bugs": {
"url": "https://github.com/xgone/dsh-remote/issues"
},
"homepage": "https://github.com/xgone/dsh-remote#readme",
"keywords": [
"dsh",
"deepseek-harness",
"plugin",
"auth",
"authentication",
"mfa",
"totp",
"2fa",
"security",
"remote-access",
"gateway",
"login"
],
"dependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-home-paths": "^0.1.0-rc.6",
"@deepseek-ai/schemastery": "^3.18.1",
"qrcode": "^1.5.4"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [],
"platform": "web",
"immediately": true
}
},
"devDependencies": {
"jsqr": "^1.4.0"
}
}