Browse Source

Merge pull request #6 from elboletaire/master

Fix export of browser version
master
arnaucube 1 year ago
committed by GitHub
parent
commit
b17997a887
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      package.json

+ 9
- 0
package.json

@ -4,6 +4,15 @@
"description": "Blind signatures over secp256k1, compatible with https://github.com/arnaucube/go-blindsecp256k1",
"main": "dist/index",
"types": "dist/index",
"exports": {
".": {
"browser": {
"default": "./dist/blindsecp256k1-browser.js"
},
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"prepublishOnly": "npm run build",
"clean": "rimraf dist",

Loading…
Cancel
Save