dsh-dlp 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,84 @@
1
+ {
2
+ "name": "dsh-dlp",
3
+ "version": "0.1.0",
4
+ "description": "Data-loss-prevention plugin for DeepSeek Harness: a non-configurable tool guard floor, tool-result redaction, and fail-closed telemetry redaction",
5
+ "license": "MIT",
6
+ "author": "Ivan Tyshchenko <nsof@protonmail.com>",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/CharlotteN7/dsh-dlp.git"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/CharlotteN7/dsh-dlp/issues"
13
+ },
14
+ "homepage": "https://github.com/CharlotteN7/dsh-dlp#readme",
15
+ "keywords": [
16
+ "dsh-plugin",
17
+ "deepseek-harness",
18
+ "dlp",
19
+ "data-loss-prevention",
20
+ "secret-detection",
21
+ "redaction",
22
+ "secretlint"
23
+ ],
24
+ "engines": {
25
+ "node": "^22.19.0 || >=24"
26
+ },
27
+ "type": "module",
28
+ "main": "lib/index.js",
29
+ "types": "lib/types/index.d.ts",
30
+ "exports": {
31
+ ".": {
32
+ "types": "./lib/types/index.d.ts",
33
+ "default": "./lib/index.js"
34
+ },
35
+ "./package.json": "./package.json"
36
+ },
37
+ "files": [
38
+ "lib/**/*.js",
39
+ "lib/types/**/*.d.ts",
40
+ "cordis.patch.yml",
41
+ "LICENSE",
42
+ "SECURITY.md"
43
+ ],
44
+ "dsh": {
45
+ "bundle": {
46
+ "patch": "./cordis.patch.yml"
47
+ }
48
+ },
49
+ "peerDependencies": {
50
+ "@deepseek-ai/cordis": "4.0.1",
51
+ "@deepseek-ai/dsh-llm": "0.1.0-rc.6",
52
+ "@deepseek-ai/dsh-session": "0.1.0-rc.6",
53
+ "@deepseek-ai/dsh-session-telemetry": "0.1.0-rc.6",
54
+ "@deepseek-ai/dsh-tools": "0.1.0-rc.6"
55
+ },
56
+ "dependencies": {
57
+ "@deepseek-ai/schemastery": "3.18.1",
58
+ "@secretlint/core": "13.0.4",
59
+ "@secretlint/secretlint-rule-preset-recommend": "13.0.4",
60
+ "js-yaml": "^4.1.0"
61
+ },
62
+ "devDependencies": {
63
+ "@deepseek-ai/cordis": "4.0.1",
64
+ "@deepseek-ai/dsh-agent": "0.1.0-rc.6",
65
+ "@deepseek-ai/dsh-llm": "0.1.0-rc.6",
66
+ "@deepseek-ai/dsh-llm-mock-server": "0.1.0-rc.6",
67
+ "@deepseek-ai/dsh-session": "0.1.0-rc.6",
68
+ "@deepseek-ai/dsh-session-telemetry": "0.1.0-rc.6",
69
+ "@deepseek-ai/dsh-tools": "0.1.0-rc.6",
70
+ "@types/js-yaml": "^4.0.9",
71
+ "@types/node": "^22.20.0",
72
+ "@vitest/coverage-v8": "^4.1.8",
73
+ "tsx": "^4.22.4",
74
+ "typescript": "^5.9.0",
75
+ "vitest": "^4.1.8"
76
+ },
77
+ "scripts": {
78
+ "build": "tsc -p tsconfig.build.json",
79
+ "typecheck": "tsc -p tsconfig.json",
80
+ "test": "vitest run --config vitest.config.ts",
81
+ "test:coverage": "vitest run --config vitest.config.ts --coverage",
82
+ "test:e2e": "pnpm run build && vitest run --config vitest.e2e.config.ts"
83
+ }
84
+ }