1
0
Fork 0
mirror of synced 2025-09-23 20:28:36 +00:00

Merge pull request #1190 from Zokrates/fix-zokrates-js

Fix exports in zokrates_js/package.json
This commit is contained in:
Thibaut Schaeffer 2022-07-19 10:56:09 +02:00 committed by GitHub
commit 9970ecda8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "zokrates_js"
version = "1.1.0"
version = "1.1.1"
authors = ["Darko Macesic"]
edition = "2018"

View file

@ -1,6 +1,6 @@
{
"name": "zokrates-js",
"version": "1.1.0",
"version": "1.1.1",
"lockfileVersion": 2,
"requires": true,
"packages": {

View file

@ -1,6 +1,6 @@
{
"name": "zokrates-js",
"version": "1.1.0",
"version": "1.1.1",
"module": "index.js",
"main": "node/index.js",
"description": "JavaScript bindings for ZoKrates",
@ -25,8 +25,8 @@
],
"types": "index.d.ts",
"exports": {
"import": "./index.js",
"require": "./node/index.js"
"node": "./node/index.js",
"default": "./index.js"
},
"scripts": {
"wasm-pack": "wasm-pack build --out-name index",