@elicitkit/conformance 0.1.0 → 0.1.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.
- package/package.json +17 -10
package/package.json
CHANGED
|
@@ -1,23 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elicitkit/conformance",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "The Elicitkit conformance suite — the source of truth for what \"Elicitkit-compliant\" means. A spec-derived fixture corpus + a portable runner any implementation points at.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
9
|
"exports": {
|
|
10
|
-
".": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"default": "./dist/index.js"
|
|
13
|
+
},
|
|
11
14
|
"./corpus": "./dist/corpus.js"
|
|
12
15
|
},
|
|
13
|
-
"files": [
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"@elicitkit/renderers": "0.1.1",
|
|
21
|
+
"@elicitkit/core": "0.1.1"
|
|
22
|
+
},
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
},
|
|
14
26
|
"scripts": {
|
|
15
27
|
"build": "tsc -p tsconfig.json",
|
|
16
28
|
"test": "tsc -p tsconfig.json && node test/smoke.mjs"
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
"@elicitkit/core": "workspace:*",
|
|
20
|
-
"@elicitkit/renderers": "workspace:*"
|
|
21
|
-
},
|
|
22
|
-
"publishConfig": { "access": "public" }
|
|
23
|
-
}
|
|
29
|
+
}
|
|
30
|
+
}
|