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: change package.json for publishing #6

Merged
merged 1 commit into from
Aug 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@


29 changes: 27 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"Vikas Rushi <[email protected]>",
"Yashwant Reddy <yashdotreddy@gmailcom>"
],
"license": "MIT",
"devDependencies": {
"circomkit": "^0.0.22",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.0",
"mocha": "^10.2.0",
Expand Down