File tree Expand file tree Collapse file tree 9 files changed +27
-22
lines changed
hybridkem-x25519-kyber768 Expand file tree Collapse file tree 9 files changed +27
-22
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"imports" : {
3
3
"@deno/dnt" : " jsr:@deno/dnt@^0.41.3" ,
4
- "@hpke/core" : " npm:@hpke/core@^1.3.0" ,
5
- "@hpke/chacha20poly1305" : " npm:@hpke/chacha20poly1305@^1.3.0" ,
6
- "@hpke/dhkem-x25519" : " npm:@hpke/dhkem-x25519@^1.3.0" ,
7
- "@hpke/dhkem-x448" : " npm:@hpke/dhkem-x448@^1.3.0" ,
8
4
"@noble/ciphers/chacha" : " npm:@noble/ciphers@^0.5.3/chacha" ,
9
5
"@noble/curves/ed25519" : " npm:@noble/curves@^1.4.2/ed25519" ,
10
6
"@noble/curves/ed448" : " npm:@noble/curves@^1.4.2/ed448" ,
Original file line number Diff line number Diff line change
1
+ {
2
+ "imports" : {
3
+ "@deno/dnt" : " jsr:@deno/dnt@^0.41.3" ,
4
+ "@hpke/core" : " npm:@hpke/core@^1.3.0" ,
5
+ "@hpke/chacha20poly1305" : " npm:@hpke/chacha20poly1305@^1.3.0" ,
6
+ "@hpke/dhkem-x25519" : " npm:@hpke/dhkem-x25519@^1.3.0" ,
7
+ "@hpke/dhkem-x448" : " npm:@hpke/dhkem-x448@^1.3.0" ,
8
+ "@noble/ciphers/chacha" : " npm:@noble/ciphers@^0.5.3/chacha" ,
9
+ "@noble/curves/ed25519" : " npm:@noble/curves@^1.4.2/ed25519" ,
10
+ "@noble/curves/ed448" : " npm:@noble/curves@^1.4.2/ed448" ,
11
+ "@noble/curves/secp256k1" : " npm:@noble/curves@^1.4.2/secp256k1" ,
12
+ "@noble/hashes/hmac" : " npm:@noble/hashes@^1.4.0/hmac" ,
13
+ "@noble/hashes/sha256" : " npm:@noble/hashes@^1.4.0/sha256" ,
14
+ "@noble/hashes/sha512" : " npm:@noble/hashes@^1.4.0/sha512" ,
15
+ "@noble/hashes/sha3" : " npm:@noble/hashes@^1.4.0/sha3" ,
16
+ "@std/assert" :
" jsr:@std/[email protected] " ,
17
+ "@std/path" : " jsr:@std/path@^1.0.3" ,
18
+ "@std/testing/bdd" : " jsr:@std/testing@^1.0.0/bdd"
19
+ }
20
+ }
Original file line number Diff line number Diff line change 43
43
]
44
44
},
45
45
"tasks" : {
46
- "test" : " deno fmt && deno lint && deno test --import-map=../../import_map.json test -A --fail-fast --doc --coverage=coverage --parallel --allow-read" ,
46
+ "test" : " deno fmt && deno lint && deno test --import-map=../../import_map.json -A --fail-fast --doc --coverage=coverage --parallel --allow-read" ,
47
47
"test:cloudflare" : " cd test/runtimes/cloudflare && npm install && npm link @hpke/core && npm run test" ,
48
48
"cov" : " deno coverage ./coverage --lcov --exclude='test'" ,
49
- "dnt" : " deno run --import-map=../../import_map.json -A dnt.ts" ,
49
+ "dnt" : " deno run --import-map=../../npm/ import_map.json -A dnt.ts" ,
50
50
"minify" : " esbuild ../../npm/packages/core/esm/mod.js --bundle --format=esm --minify"
51
51
}
52
52
}
Original file line number Diff line number Diff line change 49
49
"test" : " deno fmt && deno lint && deno test --import-map=../../import_map.json -A --fail-fast --doc --coverage=coverage --parallel --allow-read" ,
50
50
"test:cloudflare" : " cd test/runtimes/cloudflare && npm install && npm link @hpke/core @hpke/dhkem-secp256k1 && npm run test" ,
51
51
"cov" : " deno coverage ./coverage --lcov --exclude='test'" ,
52
- "dnt" : " deno run --import-map=../../import_map.json -A dnt.ts" ,
52
+ "dnt" : " deno run --import-map=../../npm/ import_map.json -A dnt.ts" ,
53
53
"minify" : " esbuild ../../npm/packages/dhkem-secp256k1/esm/dhkem-secp256k1/mod.js --bundle --format=esm --minify"
54
54
}
55
55
}
Original file line number Diff line number Diff line change 50
50
"test" : " deno fmt && deno lint && deno test --import-map=../../import_map.json -A --fail-fast --doc --coverage=coverage --parallel --allow-read" ,
51
51
"test:cloudflare" : " cd test/runtimes/cloudflare && npm install && npm link @hpke/core @hpke/dhkem-x25519 && npm run test" ,
52
52
"cov" : " deno coverage ./coverage --lcov --exclude='test'" ,
53
- "dnt" : " deno run -A dnt.ts" ,
53
+ "dnt" : " deno run --import-map=../../npm/import_map.json - A dnt.ts" ,
54
54
"minify" : " esbuild ../../npm/packages/dhkem-x25519/esm/dhkem-x25519/mod.js --bundle --format=esm --minify"
55
55
}
56
56
}
Original file line number Diff line number Diff line change 50
50
"test" : " deno fmt && deno lint && deno test --import-map=../../import_map.json -A --fail-fast --doc --coverage=coverage --parallel --allow-read" ,
51
51
"test:cloudflare" : " cd test/runtimes/cloudflare && npm install && npm link @hpke/core @hpke/dhkem-x448 && npm run test" ,
52
52
"cov" : " deno coverage ./coverage --lcov --exclude='test'" ,
53
- "dnt" : " deno run --import-map=../../import_map.json -A dnt.ts" ,
53
+ "dnt" : " deno run --import-map=../../npm/ import_map.json -A dnt.ts" ,
54
54
"minify" : " esbuild ../../npm/packages/dhkem-x448/esm/dhkem-x448/mod.js --bundle --format=esm --minify"
55
55
}
56
56
}
Original file line number Diff line number Diff line change 49
49
"test" : " deno fmt && deno lint && deno test --import-map=../../import_map.json -A --fail-fast --doc --coverage=coverage --parallel --allow-read" ,
50
50
"test:cloudflare" : " cd test/runtimes/cloudflare && npm install && npm link hpke-js && npm run test" ,
51
51
"cov" : " deno coverage ./coverage --lcov --exclude='test'" ,
52
- "dnt" : " deno run --import-map=../../import_map.json -A dnt.ts" ,
52
+ "dnt" : " deno run --import-map=../../npm/ import_map.json -A dnt.ts" ,
53
53
"minify" : " esbuild ../../npm/packages/hpke-js/esm/hpke-js/mod.js --bundle --format=esm --minify"
54
54
}
55
55
}
Original file line number Diff line number Diff line change 49
49
"test" : " deno fmt && deno lint && deno test --import-map=../../import_map.json -A --fail-fast --doc --coverage=coverage --parallel --allow-read" ,
50
50
"test:cloudflare" : " cd test/runtimes/cloudflare && npm install && npm link @hpke/core @hpke/hybridkem-x25519-kyber768 && npm run test" ,
51
51
"cov" : " deno coverage ./coverage --lcov --exclude='test'" ,
52
- "dnt" : " deno run --import-map=../../import_map.json -A dnt.ts" ,
52
+ "dnt" : " deno run --import-map=../../npm/ import_map.json -A dnt.ts" ,
53
53
"minify" : " esbuild ../../npm/packages/hybridkem-x25519-kyber768/esm/hybridkem-x25519-kyber768/mod.js --bundle --format=esm --minify"
54
54
}
55
55
}
You can’t perform that action at this time.
0 commit comments