@prettier-ai/dsh-win32-process 0.1.2-alpha.3 → 0.1.2-alpha.4

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/README.i18n.yaml CHANGED
@@ -2,5 +2,5 @@
2
2
  # side as of the last confirmed-consistent state. Both languages carry equal authority;
3
3
  # after editing either side, bring the other along and re-record with:
4
4
  # pnpm run verify-translation-pairing --write packages/subprocess/win32-process/README.md
5
- README.md: c2859996c5b5b3a82a5f78e12628613089eab3e6
6
- README.zh.md: 738d27f2671647921c80007f2cf7a7d974f211ce
5
+ README.md: c9652b542dc7d08851508619d663e750c115f3ec
6
+ README.zh.md: 6eb0b2e26092fc593c8d3d5088110a935bd8c0be
package/README.md CHANGED
@@ -83,3 +83,5 @@ The package contributes no stable request prefix, so it does not invalidate mode
83
83
  None.
84
84
 
85
85
  </details>
86
+
87
+ **Runtime invariant:** No companion is published. Operations own only call-local native handles.
package/README.zh.md CHANGED
@@ -83,3 +83,5 @@ Koffi 的 `STARTUPINFOW` 与 `PROCESS_INFORMATION` 定义还会在模块加载
83
83
  无。
84
84
 
85
85
  </details>
86
+
87
+ **运行时不变式:** 不发布伴生入口。操作只持有调用内的 native handle。
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@prettier-ai/dsh-win32-process",
3
3
  "description": "Low-level Win32 process, stdio, and Job Object primitives for the DeepSeek Harness Windows sandbox",
4
- "version": "0.1.2-alpha.3",
4
+ "version": "0.1.2-alpha.4",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -18,28 +18,21 @@
18
18
  "types": "./lib/types/index.d.ts",
19
19
  "default": "./lib/index.js"
20
20
  },
21
- "./invariant": {
22
- "types": "./lib/types/invariant.d.ts",
23
- "default": "./lib/invariant.js"
24
- },
25
21
  "./src/*": "./src/*",
26
22
  "./package.json": "./package.json"
27
23
  },
28
24
  "files": [
29
25
  "lib/index.js",
30
- "lib/invariant.js",
31
26
  "lib/types/**/*.d.ts"
32
27
  ],
33
28
  "license": "MIT",
34
29
  "peerDependencies": {
35
- "@prettier-ai/dsh-invariants": "^0.1.2-alpha.3",
36
30
  "@prettier-ai/cordis": "^4.0.2"
37
31
  },
38
32
  "dependencies": {
39
33
  "koffi": "^3.1.0"
40
34
  },
41
35
  "devDependencies": {
42
- "@prettier-ai/dsh-invariants": "^0.1.2-alpha.3",
43
36
  "@prettier-ai/cordis": "^4.0.2"
44
37
  }
45
38
  }
package/lib/invariant.js DELETED
@@ -1,10 +0,0 @@
1
- //#region lib/types/invariant.js
2
- /** Package-owned invariant companion for `@prettier-ai/dsh-win32-process`. */
3
- const PACKAGE_NAME = "@prettier-ai/dsh-win32-process";
4
- const name = "win32-process-invariant";
5
- const inject = ["invariants"];
6
- /** No runtime invariant: operations own only call-local native handles. */
7
- const install = () => {};
8
- const apply = (ctx) => Promise.resolve(ctx.invariants.register(PACKAGE_NAME, install));
9
- //#endregion
10
- export { apply, inject, name };
@@ -1,6 +0,0 @@
1
- /** Package-owned invariant companion for `@prettier-ai/dsh-win32-process`. */
2
- import type { Context } from '@prettier-ai/cordis';
3
- export declare const name = "win32-process-invariant";
4
- export declare const inject: string[];
5
- export declare const apply: (ctx: Context) => Promise<() => void>;
6
- //# sourceMappingURL=invariant.d.ts.map