2024-04-29 18:54:32 +03:00
|
|
|
{
|
2024-11-01 03:30:14 +03:00
|
|
|
"name": "@tornado/core",
|
|
|
|
"version": "1.0.19",
|
|
|
|
"description": "An SDK for building applications on top of Privacy Pools",
|
|
|
|
"main": "./dist/index.js",
|
|
|
|
"module": "./dist/index.mjs",
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"unpkg": "./dist/tornado.umd.min.js",
|
|
|
|
"jsdelivr": "./dist/tornado.umd.min.js",
|
|
|
|
"scripts": {
|
|
|
|
"typechain": "typechain --target ethers-v6 --out-dir src/typechain src/abi/*.json",
|
|
|
|
"types": "tsc --declaration --emitDeclarationOnly -p tsconfig.build.json",
|
|
|
|
"lint": "eslint src/**/*.ts test/**/*.ts --ext .ts --ignore-pattern src/typechain",
|
|
|
|
"build:node": "rollup -c",
|
|
|
|
"build:web": "webpack",
|
|
|
|
"build": "yarn types && yarn build:node && yarn build:web",
|
|
|
|
"test": "nyc mocha --require ts-node/register --require source-map-support/register --recursive 'test/**/*.ts' --timeout '300000'"
|
|
|
|
},
|
|
|
|
"author": "",
|
|
|
|
"license": "MIT",
|
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"src",
|
|
|
|
".eslintrc.js",
|
|
|
|
".gitattributes",
|
|
|
|
".gitignore",
|
|
|
|
".npmrc",
|
|
|
|
"logo.png",
|
|
|
|
"logo2.png",
|
|
|
|
"rollup.config.mjs",
|
|
|
|
"tsconfig.json",
|
|
|
|
"yarn.lock"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
2024-11-11 02:55:42 +03:00
|
|
|
"@ensdomains/content-hash": "2.5.7",
|
2024-11-01 03:30:14 +03:00
|
|
|
"@metamask/eth-sig-util": "^8.0.0",
|
|
|
|
"@tornado/contracts": "git+https://git.tornado.ws/tornadocontrib/tornado-contracts.git#1b1d707878c16a3dc60d295299d4f0e7ce6ba831",
|
|
|
|
"@tornado/fixed-merkle-tree": "^0.7.3",
|
|
|
|
"@tornado/snarkjs": "^0.1.20",
|
|
|
|
"@tornado/websnark": "^0.0.4",
|
|
|
|
"ajv": "^8.17.1",
|
|
|
|
"bn.js": "^5.2.1",
|
|
|
|
"circomlibjs": "0.1.7",
|
|
|
|
"cross-fetch": "^4.0.0",
|
|
|
|
"ethers": "^6.13.4",
|
|
|
|
"ffjavascript": "0.2.48",
|
|
|
|
"fflate": "^0.8.2",
|
|
|
|
"idb": "^8.0.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@nomicfoundation/hardhat-chai-matchers": "^2.0.7",
|
|
|
|
"@nomicfoundation/hardhat-ethers": "^3.0.8",
|
|
|
|
"@nomicfoundation/hardhat-ignition": "^0.15.5",
|
|
|
|
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.5",
|
|
|
|
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
|
|
|
|
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
|
|
|
|
"@nomicfoundation/hardhat-verify": "^2.0.10",
|
|
|
|
"@nomicfoundation/ignition-core": "^0.15.5",
|
|
|
|
"@rollup/plugin-commonjs": "^28.0.1",
|
|
|
|
"@rollup/plugin-json": "^6.1.0",
|
|
|
|
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
|
|
"@typechain/ethers-v6": "^0.5.1",
|
|
|
|
"@typechain/hardhat": "^9.1.0",
|
|
|
|
"@types/bn.js": "^5.1.6",
|
|
|
|
"@types/chai": "^4.2.0",
|
|
|
|
"@types/circomlibjs": "^0.1.6",
|
|
|
|
"@types/mocha": "^10.0.9",
|
|
|
|
"@types/node": "^22.8.0",
|
|
|
|
"@types/node-fetch": "^2.6.11",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^8.11.0",
|
|
|
|
"@typescript-eslint/parser": "^8.11.0",
|
|
|
|
"esbuild-loader": "^4.2.2",
|
|
|
|
"eslint": "8.57.0",
|
|
|
|
"eslint-config-prettier": "^9.1.0",
|
|
|
|
"eslint-import-resolver-typescript": "^3.6.3",
|
|
|
|
"eslint-plugin-import": "^2.31.0",
|
|
|
|
"eslint-plugin-prettier": "^5.2.1",
|
2024-11-06 13:00:28 +03:00
|
|
|
"fetch-mock": "^12.0.2",
|
2024-11-01 03:30:14 +03:00
|
|
|
"hardhat": "^2.22.10",
|
|
|
|
"hardhat-gas-reporter": "^2.2.1",
|
|
|
|
"mocha": "^10.7.3",
|
|
|
|
"node-polyfill-webpack-plugin": "^4.0.0",
|
|
|
|
"nyc": "^17.1.0",
|
|
|
|
"prettier": "^3.3.3",
|
|
|
|
"rollup": "^4.24.0",
|
|
|
|
"rollup-plugin-esbuild": "^6.1.1",
|
|
|
|
"solidity-coverage": "^0.8.13",
|
|
|
|
"ts-node": "^10.9.2",
|
|
|
|
"tsc": "^2.0.4",
|
|
|
|
"typechain": "^8.3.2",
|
|
|
|
"typescript": "^5.6.3",
|
|
|
|
"webpack": "^5.95.0",
|
|
|
|
"webpack-cli": "^5.1.4"
|
|
|
|
}
|
2024-04-29 18:54:32 +03:00
|
|
|
}
|