@obvi/blueprint 1.1.2 → 1.2.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@obvi/blueprint",
3
- "version": "1.1.2",
3
+ "version": "1.2.0",
4
4
  "description": "A classless-first CSS design system for beautiful technical blueprint documents.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -24,7 +24,13 @@
24
24
  ".": "./dist/blueprint.css",
25
25
  "./blueprint.js": "./dist/blueprint.js",
26
26
  "./blueprint-choices.js": "./dist/blueprint-choices.js",
27
+ "./blueprint-contract.js": {
28
+ "types": "./dist/blueprint-contract.d.ts",
29
+ "import": "./dist/blueprint-contract.js",
30
+ "default": "./dist/blueprint-contract.js"
31
+ },
27
32
  "./blueprint.css": "./dist/blueprint.css",
33
+ "./blueprint-contract.json": "./dist/blueprint-contract.json",
28
34
  "./styles.css": "./dist/blueprint.css",
29
35
  "./code-highlighting.css": "./dist/code-highlighting/blueprint-code.css",
30
36
  "./code-highlighting/blueprint-code.js": "./dist/code-highlighting/blueprint-code.js",
@@ -41,7 +47,8 @@
41
47
  "render": "node harness/render.mjs",
42
48
  "measure": "node harness/measure.mjs && node harness/behavior.mjs && node harness/navigation-clipping.mjs",
43
49
  "verify:package": "node scripts/verify-package.mjs",
44
- "verify:release-evidence": "node --test harness/release-evidence.test.mjs",
50
+ "verify:release-evidence": "node --test harness/release-evidence.test.mjs scripts/verify-published-package.test.mjs",
51
+ "verify:published": "node scripts/verify-published-package.mjs",
45
52
  "lint:style": "node scripts/lint-style.mjs",
46
53
  "release:evidence": "node harness/release-evidence.mjs",
47
54
  "verify": "npm run build && npm run lint:style && npm run verify:release-evidence && npm run measure && npm run verify:package",