@neeter/types 0.7.1 → 0.8.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.
Files changed (2) hide show
  1. package/README.md +25 -0
  2. package/package.json +3 -2
package/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # @neeter/types
2
+
3
+ Shared TypeScript types for the [neeter](https://github.com/quantumleeps/neeter) toolkit.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ pnpm add @neeter/types
9
+ ```
10
+
11
+ > Most users don't need this package directly — all types are re-exported from `@neeter/server` and `@neeter/react`.
12
+
13
+ ## What's inside
14
+
15
+ - **SSE protocol** — `SSEEvent`, `CustomEvent<T>`
16
+ - **Chat messages** — `ChatMessage`, `ToolCallInfo`, `ToolCallPhase`
17
+ - **Permissions** — `PermissionRequest`, `PermissionResponse`, `ToolApprovalRequest`, `ToolApprovalResponse`, `UserQuestion`, `UserQuestionRequest`, `UserQuestionResponse`
18
+
19
+ ## Documentation
20
+
21
+ See the [neeter README](https://github.com/quantumleeps/neeter#readme) for full API reference and usage guides.
22
+
23
+ ## License
24
+
25
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neeter/types",
3
- "version": "0.7.1",
3
+ "version": "0.8.1",
4
4
  "description": "Shared protocol types for neeter",
5
5
  "license": "MIT",
6
6
  "author": "Dan Leeper",
@@ -17,7 +17,8 @@
17
17
  }
18
18
  },
19
19
  "files": [
20
- "dist"
20
+ "dist",
21
+ "README.md"
21
22
  ],
22
23
  "scripts": {
23
24
  "build": "tsc -p tsconfig.json"