@elicitkit/core 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 -10
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # @elicitkit/core
2
+
3
+ > Elicitkit core — schema validation + the portable question model. Renderer-agnostic.
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/core
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,20 +1,29 @@
1
1
  {
2
2
  "name": "@elicitkit/core",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Elicitkit core — schema validation + the portable question model. Renderer-agnostic.",
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": {
12
- "build": "tsc -p tsconfig.json",
13
- "test": "tsc -p tsconfig.json && node test/smoke.mjs"
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "default": "./dist/index.js"
13
+ }
14
14
  },
15
+ "files": [
16
+ "dist"
17
+ ],
15
18
  "dependencies": {
16
- "@elicitkit/spec": "workspace:*",
17
- "ajv": "^8.17.1"
19
+ "ajv": "^8.17.1",
20
+ "@elicitkit/spec": "0.1.2"
21
+ },
22
+ "publishConfig": {
23
+ "access": "public"
18
24
  },
19
- "publishConfig": { "access": "public" }
20
- }
25
+ "scripts": {
26
+ "build": "tsc -p tsconfig.json",
27
+ "test": "tsc -p tsconfig.json && node test/smoke.mjs"
28
+ }
29
+ }