forked from yauntyour/DSH-Encrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.55 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "dsh-encrypt",
"version": "0.1.0-rc.10",
"description": "Fabric sidecar encryption for DeepSeek Harness credentials: preserve the official provider and hook only resolve, describe, set, unset, and optional WebServer registration with an Argon2id/AES-GCM sidecar, unlock lockout, leak redaction, and integrity checks.",
"type": "module",
"main": "lib/fabric-entry.js",
"bin": {
"dsh-encrypt-migrate": "bin/dsh-encrypt-migrate.mjs"
},
"exports": {
".": "./lib/fabric-entry.js",
"./migrate": "./lib/migrate.js",
"./vault": "./lib/vault.js",
"./plain": "./lib/plain.js",
"./web": "./lib/web.js",
"./client": "./lib/client.js",
"./compat": "./lib/compat.js",
"./trust": "./lib/trust.js",
"./cordis.patch.yml": "./cordis.patch.yml",
"./package.json": "./package.json"
},
"files": [
"lib/fabric-entry.js",
"lib/fabric-controller.js",
"lib/fabric-handlers.js",
"lib/plain.js",
"lib/migrate.js",
"lib/vault.js",
"lib/leak-guard.js",
"lib/lockout.js",
"lib/integrity.js",
"lib/compat.js",
"lib/trust.js",
"lib/integrity-manifest.json",
"lib/web.js",
"lib/client.js",
"bin/dsh-encrypt-migrate.mjs",
"cordis.patch.yml"
],
"keywords": [
"deepseek",
"dsh",
"credentials",
"aes-256-gcm",
"argon2id",
"sha3-256",
"encryption",
"password",
"prompt-injection",
"leak-guard"
],
"license": "MIT",
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-ui-settings"
],
"platform": "web"
}
},
"dependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-atomic-write": "^0.1.0-rc.6",
"@deepseek-ai/dsh-credentials": "^0.1.0-rc.6",
"@deepseek-ai/dsh-home-paths": "^0.1.0-rc.6",
"@deepseek-ai/dsh-launch-environment": "^0.1.0-rc.6",
"@deepseek-ai/schemastery": "^3.18.1",
"@node-rs/argon2": "^2.0.0",
"chokidar": "^4.0.3",
"cordis-fabric": "https://github.com/omdsh-dev/fabric/releases/latest/download/cordis-fabric.tgz",
"yaml": "^2.9.0"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1"
},
"scripts": {
"integrity": "node scripts/gen-integrity.mjs",
"check:patch": "node scripts/gen-integrity.mjs && node scripts/check-patch-drift.mjs",
"pretest": "node scripts/gen-integrity.mjs && node scripts/check-patch-drift.mjs",
"prepack": "node scripts/gen-integrity.mjs && node scripts/check-patch-drift.mjs",
"test": "node --test \"test/fabric.test.js\""
}
}