mirror of
https://github.com/privacy-scaling-explorations/p0tion.git
synced 2026-01-14 16:27:55 -05:00
83 lines
2.9 KiB
JSON
83 lines
2.9 KiB
JSON
{
|
|
"name": "@p0tion/actions",
|
|
"version": "1.2.0",
|
|
"description": "A set of actions and helpers for CLI commands",
|
|
"repository": "git@github.com:privacy-scaling-explorations/p0tion.git",
|
|
"homepage": "https://github.com/privacy-scaling-explorations/p0tion",
|
|
"bugs": "https://github.com/privacy-scaling-explorations/p0tion/issues",
|
|
"license": "MIT",
|
|
"exports": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.node.js",
|
|
"types": "./dist/types/src/index.d.ts"
|
|
},
|
|
"main": "dist/index.node.js",
|
|
"types": "dist/types/src/index.d.ts",
|
|
"engines": {
|
|
"node": ">=16.14.0"
|
|
},
|
|
"files": [
|
|
"dist/",
|
|
"src/"
|
|
],
|
|
"keywords": [
|
|
"typescript",
|
|
"zero-knowledge",
|
|
"zk-snarks",
|
|
"phase-2",
|
|
"trusted-setup",
|
|
"ceremony",
|
|
"snarkjs",
|
|
"circom"
|
|
],
|
|
"scripts": {
|
|
"build": "rimraf dist && rollup -c rollup.config.ts --configPlugin typescript",
|
|
"build:watch": "rollup -c rollup.config.ts -w --configPlugin typescript",
|
|
"pre:publish": "yarn build",
|
|
"compile:contracts": "hardhat compile",
|
|
"test:contracts": "GOOGLE_APPLICATION_CREDENTIALS=\"../backend/serviceAccountKey.json\" && NODE_ENV=prod && TS_NODE_FILES=true hardhat test test/unit/contract.test.ts",
|
|
"verify:ceremony": "GOOGLE_APPLICATION_CREDENTIALS=\"../backend/serviceAccountKey.json\" && NODE_ENV=prod hardhat verifyCeremony",
|
|
"docs": "typedoc src/**/*.ts --out ../../docs/actions"
|
|
},
|
|
"dependencies": {
|
|
"@adobe/node-fetch-retry": "^2.2.0",
|
|
"@aws-sdk/client-ec2": "^3.358.0",
|
|
"@aws-sdk/client-s3": "^3.329.0",
|
|
"@aws-sdk/client-ssm": "^3.358.0",
|
|
"@bandada/api-sdk": "^2.2.7",
|
|
"@octokit/auth-oauth-device": "^4.0.4",
|
|
"@types/winston": "^2.4.4",
|
|
"blakejs": "^1.2.1",
|
|
"chai": "^4.3.7",
|
|
"chai-as-promised": "^7.1.1",
|
|
"dotenv": "^16.0.3",
|
|
"ethers": "^5.7.2",
|
|
"firebase": "^9.21.0",
|
|
"firebase-admin": "^11.8.0",
|
|
"googleapis": "^118.0.0",
|
|
"rimraf": "^5.0.0",
|
|
"rollup": "^3.21.6",
|
|
"snarkjs": "0.7.3",
|
|
"solc": "^0.8.19"
|
|
},
|
|
"devDependencies": {
|
|
"@ethersproject/providers": "^5.7.2",
|
|
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
|
|
"@nomiclabs/hardhat-ethers": "^2.2.3",
|
|
"@typechain/ethers-v5": "^10.2.1",
|
|
"@typechain/hardhat": "^6.1.6",
|
|
"@types/mocha": "^10.0.1",
|
|
"@types/rollup-plugin-auto-external": "^2.0.2",
|
|
"hardhat": "^2.14.0",
|
|
"rollup-plugin-auto-external": "^2.0.0",
|
|
"rollup-plugin-cleanup": "^3.2.1",
|
|
"rollup-plugin-typescript2": "^0.34.1",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.0.4",
|
|
"winston": "^3.8.2"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|