From 1c357669b268d53675ecef95e1119bbf8b18d16f Mon Sep 17 00:00:00 2001 From: ayman Date: Sat, 3 Aug 2024 19:09:29 +0530 Subject: [PATCH] feat: change package.json for publishing --- index.js | 2 ++ package.json | 29 +++++++++++++++++++++++++++-- 2 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 index.js diff --git a/index.js b/index.js new file mode 100644 index 0000000..139597f --- /dev/null +++ b/index.js @@ -0,0 +1,2 @@ + + diff --git a/package.json b/package.json index d753bd2..fdb8482 100644 --- a/package.json +++ b/package.json @@ -1,15 +1,40 @@ { - "description": "AES circom", + "name": "@crema-labs/aes-circom", + "description": "A generic AES forward cipher implementation", + "version": "0.0.2", + "main": "index.js", + "keywords": [ + "aes", + "cipher", + "circom", + "circuit", + "zk", + "zk-snarks" + ], + "files": [ + "circuits", + "index.js" + ], "scripts": { "start": "npx ts-node ./src/index.ts", "test": "npx mocha", "compile:test": "npx circomkit compile cipher_4 && npx circomkit prove cipher_4 default && npx circomkit verify cipher_4 default" }, "dependencies": { - "circomkit": "^0.0.22", "circomlib": "^2.0.5" }, + "repository": { + "type": "git", + "url": "https://github.com/crema-labs/aes-circom.git" + }, + "contributors": [ + "Ayman Mohammed ", + "Vikas Rushi <0xvikas@gmail.com>", + "Yashwant Reddy " + ], + "license": "MIT", "devDependencies": { + "circomkit": "^0.0.22", "@types/mocha": "^10.0.1", "@types/node": "^20.3.0", "mocha": "^10.2.0",