Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add initial version of noir.js #2681

Merged
merged 15 commits into from
Sep 14, 2023
3 changes: 3 additions & 0 deletions tooling/noir_js/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import * as acvm from "@noir-lang/acvm_js";
import * as noirc from "@noir-lang/noirc_abi";
export { acvm, noirc }
13 changes: 13 additions & 0 deletions tooling/noir_js/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "@noir-lang/noir_js",
"collaborators": [
"The Noir Team <team@noir-lang.org>"
],
"version": "0.0.1",
"packageManager": "yarn@3.5.1",
"license": "ISC",
kevaundray marked this conversation as resolved.
Show resolved Hide resolved
"dependencies": {
"@noir-lang/acvm_js": "0.26.1",
"@noir-lang/noirc_abi": "0.10.3"
}
}
13 changes: 13 additions & 0 deletions tooling/noir_js/yarn.lock
kevaundray marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1


"@noir-lang/acvm_js@0.26.1":
version "0.26.1"
resolved "https://registry.yarnpkg.com/@noir-lang/acvm_js/-/acvm_js-0.26.1.tgz#5dc5d4f54a1663ff0096ab3e7633c126418bd0f0"
integrity sha512-pEZxMIV90nryLbFEzSBEWX3sYpjjN8rTnkD78Vd0ctTFFBdl202sX58LGe11NNH3BOLGvxcJXzv3XXjrVir0Tw==

"@noir-lang/noirc_abi@0.10.3":
version "0.10.3"
resolved "https://registry.yarnpkg.com/@noir-lang/noirc_abi/-/noirc_abi-0.10.3.tgz#5f80ff0be441a8a802be76a2bff09947f6de891a"
integrity sha512-l5T/iF8nrOhV2hMS6byUwOtxPTF1DfZtNFw0028ExQ68Z25KD3hXwg6VlUtmaEhQ83e1PUdGEyss9UnA4fmFxQ==
Loading