dsh-plugin-rollout-scout 1.3.1

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,54 @@
1
+ {
2
+ "name": "dsh-plugin-rollout-scout",
3
+ "version": "1.3.1",
4
+ "description": "Detect which conversation model your DeepSeek Harness account is served: score probe conversations' live chain-of-thought, cancel old-model probes in seconds, keep confident catches.",
5
+ "type": "module",
6
+ "main": "lib/index.js",
7
+ "exports": {
8
+ ".": {
9
+ "default": "./lib/index.js"
10
+ },
11
+ "./client": {
12
+ "default": "./lib/client.js"
13
+ },
14
+ "./cordis.patch.yml": "./cordis.patch.yml",
15
+ "./package.json": "./package.json"
16
+ },
17
+ "files": [
18
+ "lib",
19
+ "cordis.patch.yml",
20
+ "plugin.client.js",
21
+ "_wrap-client.mjs"
22
+ ],
23
+ "license": "MIT",
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/SpookySandwich/dsh-plugin-rollout-scout.git"
27
+ },
28
+ "keywords": [
29
+ "dsh",
30
+ "dsh-plugin",
31
+ "deepseek-harness",
32
+ "cordis-plugin",
33
+ "rollout",
34
+ "ab-test",
35
+ "model-detection"
36
+ ],
37
+ "dsh": {
38
+ "bundle": {
39
+ "patch": "./cordis.patch.yml"
40
+ },
41
+ "client": {
42
+ "platform": "web",
43
+ "inject": []
44
+ }
45
+ },
46
+ "scripts": {
47
+ "build": "node _wrap-client.mjs",
48
+ "prepare": "node _wrap-client.mjs",
49
+ "prepack": "node _wrap-client.mjs",
50
+ "pretest": "node _wrap-client.mjs",
51
+ "test": "node test/classifier.test.mjs && node test/route.test.mjs && node test/pump.test.mjs && node test/delete.test.mjs && node test/lifecycle.test.mjs && node test/client-css.test.mjs",
52
+ "check:client": "node _wrap-client.mjs && git diff --exit-code -- lib/client.js"
53
+ }
54
+ }