mirror of
https://github.com/zkemail/zk-regex.git
synced 2026-01-09 21:58:10 -05:00
* update 2 files, create 6 files and delete 1 file
* update 1 file and create 1 file
* node.rs
* wasm
* update circom.rs and lib.rs
* wasm_bindgen gen_from_raw_memory
* reverse_string
* call gen_from_raw_memory from js
* disable neon for wasm
* chore: delete .yarnrc
* toolchain, docs
* remove pkg dir
* Revert "update 1 file and create 1 file"
This reverts commit ae5b918e50.
* cleanup
* target_family wasm
* remove neon from compiler
* test stub
* README
* update package.json, wasm.test.js and packages/compiler/README.md
* wasm-pack web README
* tests
* change from unwrap to expect in gen_from_raw_memory, formatting
* gen_from_decomposed_memory
* test: update email_addr.test.js
* update tests
* test: update simple_regex.test.js
* chore: delete wasm.test.js
* update circom.rs and lib.rs
* add wasm-bindgen to api
* feat: add wasm
* chore: update version
---------
Co-authored-by: Olof Andersson <olof.andersson@gmail.com>
56 lines
1.5 KiB
JSON
56 lines
1.5 KiB
JSON
{
|
|
"name": "@zk-email/zk-regex",
|
|
"version": "2.0.0",
|
|
"private": true,
|
|
"description": "zk regex circuit for content attestation",
|
|
"main": "pkg/zk_regex_compiler_bg.wasm",
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"contributors": [
|
|
"Sora Suegami <suegamisora@gmail.com>",
|
|
"Yush G <aayushg@mit.edu>",
|
|
"Javier Su <javier.su.weijie@gmail.com>",
|
|
"Kata Choi <kata.choi@gmail.com>",
|
|
"Aditya Bisht <adityabisht64@gmail.com>"
|
|
],
|
|
"scripts": {
|
|
"install": "yarn workspaces -pt run install",
|
|
"build": "yarn workspaces -pt run build",
|
|
"postinstall": "cargo install --path ./packages/compiler",
|
|
"test": "yarn workspaces -pt run test",
|
|
"upload-binary": "yarn workspaces -pt run upload-binary"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/zk-email-verify/zk-regex.git"
|
|
},
|
|
"keywords": [
|
|
"circom",
|
|
"circuit",
|
|
"regex",
|
|
"zk",
|
|
"attestation"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/zk-email-verify/zk-regex/issues"
|
|
},
|
|
"homepage": "https://github.com/zk-email-verify/zk-regex#readme",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.22.5",
|
|
"@babel/plugin-transform-modules-commonjs": "^7.22.15",
|
|
"@babel/preset-env": "^7.22.2",
|
|
"@babel/preset-react": "^7.22.0",
|
|
"@types/jest": "^29.5.4",
|
|
"babel-jest": "^29.5.0",
|
|
"babel-preset-jest": "^29.5.0",
|
|
"jest": "^29.5.0",
|
|
"prettier": "^3.0.0",
|
|
"prettier-plugin-solidity": "^1.1.3"
|
|
},
|
|
"engines": {
|
|
"yarn": "^1.22.0"
|
|
}
|
|
}
|