Skip to content

Commit ef8dc32

Browse files
committed
Bump versions to 0.1.1
1 parent 795e754 commit ef8dc32

5 files changed

Lines changed: 26 additions & 10 deletions

File tree

packages/attest-zk-groth16/package.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
11
{
22
"name": "@verifiable-okf/attest-zk-groth16",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Verifiable OKF attestation verifier for the zk-groth16 scheme (Groth16/BN254 via snarkjs). Offline proof verification; bundles the contains_no_pii demo verification key.",
55
"license": "Apache-2.0",
66
"type": "module",
77
"main": "dist/index.js",
88
"types": "dist/index.d.ts",
9-
"exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } },
10-
"files": ["dist"],
9+
"exports": {
10+
".": {
11+
"types": "./dist/index.d.ts",
12+
"import": "./dist/index.js"
13+
}
14+
},
15+
"files": [
16+
"dist"
17+
],
1118
"scripts": {
1219
"build": "tsc -p tsconfig.json && cp -r src/vkeys dist/vkeys",
1320
"test": "vitest run",

packages/canon/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@verifiable-okf/canon",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Verifiable OKF canonicalization (SPEC §5/§6): body canonical form, JCS, and signing-payload builder. Shared, version-pinned core for signer and verifier.",
55
"license": "Apache-2.0",
66
"type": "module",

packages/signer/package.json

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,23 @@
11
{
22
"name": "@verifiable-okf/signer",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Verifiable OKF signer: attaches a `provenance` block (content_hash + Ed25519 signature) without mutating any other byte. CLI: vokf-sign.",
55
"license": "Apache-2.0",
66
"type": "module",
77
"main": "dist/index.js",
88
"types": "dist/index.d.ts",
9-
"exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } },
10-
"bin": { "vokf-sign": "dist/cli.js" },
11-
"files": ["dist"],
9+
"exports": {
10+
".": {
11+
"types": "./dist/index.d.ts",
12+
"import": "./dist/index.js"
13+
}
14+
},
15+
"bin": {
16+
"vokf-sign": "dist/cli.js"
17+
},
18+
"files": [
19+
"dist"
20+
],
1221
"scripts": {
1322
"build": "tsc -p tsconfig.json",
1423
"test": "vitest run",

packages/verifier/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@verifiable-okf/verifier",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Verifiable OKF verifier: the SPEC §10 algorithm (status + reason codes), JSON Schema validation, and did:web/did:key resolution. CLI: vokf-verify.",
55
"license": "Apache-2.0",
66
"type": "module",

packages/visualizer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@verifiable-okf/visualizer",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Verifiable OKF proof-status visualizer: a bundle → a single self-contained, offline HTML report with per-concept verified/unverified/failed badges. No backend, no CDN, no data leaves the page.",
55
"license": "Apache-2.0",
66
"type": "module",

0 commit comments

Comments
 (0)