Skip to content

Commit 39408bd

Browse files
committed
Revert "chore: move noble libraries to their future package.json"
This reverts commit 57d6330.
1 parent c3506e3 commit 39408bd

File tree

5 files changed

+72
-116
lines changed

5 files changed

+72
-116
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ jobs:
2828
cache: 'npm'
2929
check-latest: true
3030
- run: npm clean-install
31-
- run: npm clean-install
32-
working-directory: ./examples/noble-suite
3331
- run: node --run build
3432
- run: node --run build:other
3533
- run: node --run format
@@ -45,8 +43,6 @@ jobs:
4543
cache: 'npm'
4644
check-latest: true
4745
- run: npm clean-install
48-
- run: npm clean-install
49-
working-directory: ./examples/noble-suite
5046
- run: node --run docs
5147
- run: git diff --exit-code
5248
- uses: r-lib/actions/setup-pandoc@v2
@@ -71,8 +67,6 @@ jobs:
7167
cache: 'npm'
7268
check-latest: true
7369
- run: npm clean-install
74-
- run: npm clean-install
75-
working-directory: ./examples/noble-suite
7670
- run: node --run test
7771

7872
deno:
@@ -83,8 +77,6 @@ jobs:
8377
with:
8478
deno-version: latest
8579
- run: npm clean-install
86-
- run: npm clean-install
87-
working-directory: ./examples/noble-suite
8880
- run: deno run test:deno
8981

9082
bun:
@@ -95,6 +87,4 @@ jobs:
9587
with:
9688
bun-version: latest
9789
- run: npm clean-install
98-
- run: npm clean-install
99-
working-directory: ./examples/noble-suite
10090
- run: bun run test:bun

examples/noble-suite/package-lock.json

Lines changed: 0 additions & 80 deletions
This file was deleted.

examples/noble-suite/package.json

Lines changed: 7 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,11 @@
11
{
2-
"name": "@panva/hpke-noble",
3-
"version": "0.2.2",
4-
"description": "HPKE algorithm implementations for @panva/hpke based on the @noble cryptographic libraries",
2+
"name": "noble-suite",
3+
"private": true,
4+
"version": "0.0.0",
5+
"description": "",
6+
"main": "index.ts",
57
"keywords": [],
6-
"homepage": "https://github.com/panva/hpke",
7-
"repository": "panva/hpke",
8-
"funding": {
9-
"url": "https://github.com/sponsors/panva"
10-
},
11-
"license": "MIT",
128
"author": "Filip Skokan <panva.ip@gmail.com>",
13-
"sideEffects": false,
14-
"type": "module",
15-
"main": "index.js",
16-
"types": "index.d.ts",
17-
"files": [
18-
"index.d.ts",
19-
"index.js"
20-
],
21-
"scripts": {},
22-
"devDependencies": {
23-
"@noble/ciphers": "^2.0.1",
24-
"@noble/hashes": "^2.0.1",
25-
"@noble/post-quantum": "^0.5.2"
26-
},
27-
"publishConfig": {
28-
"access": "public"
29-
}
9+
"license": "MIT",
10+
"type": "module"
3011
}

package-lock.json

Lines changed: 62 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@
5050
"test:docs": "node --run docs && npx tsc -p tsconfig.docs.json && ./check-examples.sh"
5151
},
5252
"devDependencies": {
53+
"@noble/ciphers": "^2.0.1",
54+
"@noble/hashes": "^2.0.1",
55+
"@noble/post-quantum": "^0.5.2",
5356
"@types/node": "^24.10.1",
5457
"@types/web": "^0.0.294",
5558
"amaro": "^1.1.5",

0 commit comments

Comments
 (0)