@bun-win32/psapi 2.0.1 → 2.0.2

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.
Files changed (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,7 +4,9 @@ Zero-dependency, zero-overhead Win32 PSAPI bindings for [Bun](https://bun.sh) on
4
4
 
5
5
  ## Overview
6
6
 
7
- `@bun-win32/psapi` exposes the `psapi.dll` exports using Bun's FFI. It provides a single class, `Psapi`, which lazily binds native symbols on first use. You can optionally preload a subset or all symbols up-front via `Preload()`.
7
+ `@bun-win32/psapi` exposes the `psapi.dll` exports using [Bun](https://bun.sh)'s FFI. It provides a single class, `Psapi`, which lazily binds native symbols on first use. You can optionally preload a subset or all symbols up-front via `Preload()`.
8
+
9
+ The bindings are strongly typed for a smooth DX in TypeScript.
8
10
 
9
11
  ## Features
10
12
 
@@ -46,7 +48,7 @@ console.log('Processes: %d', count);
46
48
 
47
49
  ## Examples
48
50
 
49
- Run the included example to see the library in action:
51
+ Run the included examples:
50
52
 
51
53
  ```sh
52
54
  bun run example # Process enumeration + performance info
package/package.json CHANGED
@@ -23,7 +23,7 @@
23
23
  "url": "git://github.com/bun-win32/psapi.git"
24
24
  },
25
25
  "type": "module",
26
- "version": "2.0.1",
26
+ "version": "2.0.2",
27
27
  "main": "./index.ts",
28
28
  "keywords": [
29
29
  "bun",