sealed-lattice 0.0.2 → 0.0.4
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 +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sealed-lattice",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "A browser-native TypeScript package for sealed-lattice research prototypes, currently shipping a narrow SHA-256 helper while the post-quantum architecture remains intentionally unfrozen.",
|
|
5
5
|
"author": "Piotr Piech <piotr@piech.dev>",
|
|
6
6
|
"license": "MPL-2.0",
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"tsc": "pnpm run typecheck",
|
|
34
34
|
"guard:no-math-random": "tsx ./tests/guards/check-no-math-random.ts",
|
|
35
35
|
"verify:package-surface": "tsx ./tools/verify-package-surface.ts",
|
|
36
|
+
"package:smoke": "tsx ./tools/verify-package-tarball.ts",
|
|
36
37
|
"vectors:core": "tsx ./tools/generate-core-vectors.ts",
|
|
37
38
|
"bench:micro": "tsx ./tools/benchmarks/microbench.ts",
|
|
38
39
|
"check": "pnpm run lint && pnpm run typecheck && pnpm run guard:no-math-random && pnpm run verify:package-surface && pnpm run test",
|
|
@@ -45,7 +46,9 @@
|
|
|
45
46
|
"test:watch": "vitest --project node --watch",
|
|
46
47
|
"coverage:node": "vitest --project node --run --coverage",
|
|
47
48
|
"coverage:badge": "pnpm run coverage:node && tsx ./tools/generate-coverage-badge.ts",
|
|
48
|
-
"
|
|
49
|
+
"verify:docs:build": "tsx ./tools/verify-docs-build.ts",
|
|
50
|
+
"docs:ci": "pnpm run docs:api && pnpm run verify:docs && pnpm run coverage:badge && pnpm run docs:build:site && pnpm run verify:docs:build",
|
|
51
|
+
"ci": "pnpm run check && pnpm run build:skip && pnpm run package:smoke && pnpm run docs:ci",
|
|
49
52
|
"docs:api": "pnpm exec del-cli docs/src/content/docs/api/reference && tsx ./node_modules/typedoc/bin/typedoc --options typedoc.config.mjs && tsx ./typedoc/postprocess-site-docs.ts",
|
|
50
53
|
"docs:dev": "pnpm run docs:api && astro dev --root docs",
|
|
51
54
|
"docs:build": "pnpm run docs:api && pnpm run docs:build:site",
|