2 Commits
0.8.1 ... 0.8.2

Author SHA1 Message Date
Paul Miller
5784ef23f6 Release 0.8.2. 2023-03-14 00:44:02 +01:00
Paul Miller
ef55efe842 Fix common.js build 2023-03-14 00:42:40 +01:00
2 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "@noble/curves", "name": "@noble/curves",
"version": "0.8.1", "version": "0.8.2",
"description": "Minimal, auditable JS implementation of elliptic curve cryptography", "description": "Minimal, auditable JS implementation of elliptic curve cryptography",
"files": [ "files": [
"abstract", "abstract",

View File

@@ -7,8 +7,8 @@
"outDir": ".", "outDir": ".",
"target": "es2020", "target": "es2020",
"lib": ["es2020"], // Set explicitly to remove DOM "lib": ["es2020"], // Set explicitly to remove DOM
"module": "es6", "module": "commonjs",
"moduleResolution": "node16", "moduleResolution": "node",
"noUnusedLocals": true, "noUnusedLocals": true,
"baseUrl": ".", "baseUrl": ".",
}, },