@noir-lang/noir_codegen 0.19.0

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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +53 -0
package/README.md ADDED
@@ -0,0 +1,4 @@
1
+
2
+ ## Acknowledgements
3
+
4
+ `noir-codegen` repurposes the CLI code from https://github.com/dethcrypto/TypeChain, used under the MIT license.
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@noir-lang/noir_codegen",
3
+ "collaborators": [
4
+ "The Noir Team <team@noir-lang.org>"
5
+ ],
6
+ "version": "0.19.0",
7
+ "packageManager": "yarn@3.5.1",
8
+ "license": "(MIT OR Apache-2.0)",
9
+ "type": "module",
10
+ "dependencies": {
11
+ "@noir-lang/types": "0.19.0",
12
+ "glob": "^10.3.10",
13
+ "lodash": "^4.17.21",
14
+ "ts-command-line-args": "^2.5.1"
15
+ },
16
+ "files": [
17
+ "lib",
18
+ "package.json"
19
+ ],
20
+ "source": "src/index.ts",
21
+ "main": "lib/index.js",
22
+ "types": "lib/index.d.ts",
23
+ "bin": {
24
+ "noir-codegen": "lib/main.js"
25
+ },
26
+ "scripts": {
27
+ "dev": "tsc-multi --watch",
28
+ "build": "tsc",
29
+ "test": "ts-node --esm src/main.ts ./test/assert_lt/target/** --out-dir ./test/codegen && yarn test:node && rm -rf ./test/codegen",
30
+ "test:node": "mocha --timeout 25000 --exit --config ./.mocharc.json",
31
+ "prettier": "prettier 'src/**/*.ts'",
32
+ "prettier:fix": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
33
+ "lint": "NODE_NO_WARNINGS=1 eslint . --ext .ts --ignore-path ./.eslintignore --max-warnings 0",
34
+ "nightly:version": "jq --arg new_version \"-$(git rev-parse --short HEAD)$1\" '.version = .version + $new_version' package.json > package-tmp.json && mv package-tmp.json package.json",
35
+ "publish": "echo 📡 publishing `$npm_package_name` && yarn npm publish",
36
+ "clean": "rm -rf ./lib"
37
+ },
38
+ "devDependencies": {
39
+ "@noir-lang/noir_js": "0.19.0",
40
+ "@types/chai": "^4",
41
+ "@types/lodash": "^4",
42
+ "@types/mocha": "^10.0.1",
43
+ "@types/node": "^20.6.2",
44
+ "@types/prettier": "^3",
45
+ "chai": "^4.3.8",
46
+ "eslint": "^8.50.0",
47
+ "eslint-plugin-prettier": "^5.0.0",
48
+ "mocha": "^10.2.0",
49
+ "prettier": "3.0.3",
50
+ "ts-node": "^10.9.1",
51
+ "typescript": "^5.2.2"
52
+ }
53
+ }