@noir-lang/noir_js 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ import * as acvm from "@noir-lang/acvm_js";
2
+ import * as noirc from "@noir-lang/noirc_abi";
3
+ export { acvm, noirc };
package/lib/index.js ADDED
@@ -0,0 +1,3 @@
1
+ import * as acvm from "@noir-lang/acvm_js";
2
+ import * as noirc from "@noir-lang/noirc_abi";
3
+ export { acvm, noirc };
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@noir-lang/noir_js",
3
+ "collaborators": [
4
+ "The Noir Team <team@noir-lang.org>"
5
+ ],
6
+ "version": "0.0.1",
7
+ "packageManager": "yarn@3.5.1",
8
+ "license": "(MIT OR Apache-2.0)",
9
+ "dependencies": {
10
+ "@noir-lang/acvm_js": "0.26.1",
11
+ "@noir-lang/noirc_abi": "workspace:*"
12
+ },
13
+ "files": [
14
+ "lib",
15
+ "package.json"
16
+ ],
17
+ "main": "lib/index.js",
18
+ "types": "lib/index.d.ts",
19
+ "scripts": {
20
+ "build": "tsc"
21
+ },
22
+ "devDependencies": {
23
+ "typescript": "^5.2.2"
24
+ }
25
+ }