@elicitkit/renderers 0.1.0 → 0.1.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 +17 -0
  2. package/package.json +19 -8
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # @elicitkit/renderers
2
+
3
+ > Elicitkit progressive renderers — one AskSet, four tiers (apps · url · elicitation · tui). The reference rendering of the spec's 4-tier contract.
4
+
5
+ Part of **[Elicitkit](https://github.com/elicitkit/elicitkit)** — typed questions for AI agents. An open standard over MCP: a portable spec (Ask · AskSet · Answer), a TypeScript reference implementation, and an 84-fixture conformance suite.
6
+
7
+ ## Install
8
+
9
+ ```sh
10
+ npm i @elicitkit/renderers
11
+ ```
12
+
13
+ ## Links
14
+
15
+ - Repository & docs: https://github.com/elicitkit/elicitkit
16
+ - Spec: https://github.com/elicitkit/elicitkit/blob/main/packages/spec/SPEC.md
17
+ - License: Apache-2.0
package/package.json CHANGED
@@ -1,17 +1,28 @@
1
1
  {
2
2
  "name": "@elicitkit/renderers",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Elicitkit progressive renderers — one AskSet, four tiers (apps · url · elicitation · tui). The reference rendering of the spec's 4-tier contract.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
7
7
  "main": "./dist/index.js",
8
8
  "types": "./dist/index.d.ts",
9
- "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } },
10
- "files": ["dist"],
11
- "scripts": { "build": "tsc -p tsconfig.json" },
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "default": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
12
18
  "dependencies": {
13
- "@elicitkit/core": "workspace:*",
14
- "@mcp-ui/server": "^6.1.0"
19
+ "@mcp-ui/server": "^6.1.0",
20
+ "@elicitkit/core": "0.1.2"
21
+ },
22
+ "publishConfig": {
23
+ "access": "public"
15
24
  },
16
- "publishConfig": { "access": "public" }
17
- }
25
+ "scripts": {
26
+ "build": "tsc -p tsconfig.json"
27
+ }
28
+ }