2023-04-08 15:17:52 -04:00
|
|
|
{
|
2023-05-02 18:19:28 -04:00
|
|
|
"name": "@tornado/sdk-monorepo",
|
2023-04-08 15:17:52 -04:00
|
|
|
"author": "T-Hax",
|
2023-05-02 18:19:28 -04:00
|
|
|
"license": "ISC",
|
|
|
|
"description": "Tornado SDK monorepo.",
|
|
|
|
"repository": "https://development.tornadocash.community/T-Hax/sdk",
|
|
|
|
"homepage": "https://tornadocash.community",
|
2023-04-08 15:17:52 -04:00
|
|
|
"keywords": [
|
|
|
|
"ethereum",
|
|
|
|
"crypto",
|
|
|
|
"zk"
|
|
|
|
],
|
2023-05-13 15:30:21 -04:00
|
|
|
"version": "0.0.11-alpha",
|
2023-04-08 15:17:52 -04:00
|
|
|
"engines": {
|
2023-04-11 15:36:32 -04:00
|
|
|
"node": "^18"
|
2023-04-08 15:17:52 -04:00
|
|
|
},
|
2023-05-13 15:30:21 -04:00
|
|
|
"main": "./dist/index.js",
|
2023-05-02 18:19:28 -04:00
|
|
|
"private": true,
|
|
|
|
"workspaces": [
|
|
|
|
"@tornado/*"
|
2023-04-08 15:17:52 -04:00
|
|
|
],
|
2023-05-02 18:19:28 -04:00
|
|
|
"devDependencies": {
|
2023-04-29 12:44:05 -04:00
|
|
|
"@ethersproject/abi": "^5.7.0",
|
|
|
|
"@ethersproject/providers": "^5.7.2",
|
2023-04-08 15:17:52 -04:00
|
|
|
"@typechain/ethers-v5": "^10.2.0",
|
|
|
|
"@types/big-integer": "^0.0.31",
|
|
|
|
"@types/chai": "^4.2.18",
|
|
|
|
"@types/mocha": "^10.0.1",
|
|
|
|
"@types/node": "^18.15.0",
|
|
|
|
"@types/pouchdb": "^6.4.0",
|
|
|
|
"@types/pouchdb-adapter-memory": "^6.1.3",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.54.1",
|
|
|
|
"@typescript-eslint/parser": "^5.54.1",
|
|
|
|
"@uniswap/default-token-list": "^9.3.0",
|
|
|
|
"chai": "^4.3.4",
|
|
|
|
"conventional-changelog-cli": "^2.1.1",
|
2023-05-02 18:19:28 -04:00
|
|
|
"copy": "^0.3.2",
|
|
|
|
"copyfiles": "^2.4.1",
|
2023-04-08 15:17:52 -04:00
|
|
|
"dotenv": "^16.0.3",
|
|
|
|
"eslint": "^8.35.0",
|
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
|
|
"ethereum-waffle": "^4.0.10",
|
2023-05-02 18:19:28 -04:00
|
|
|
"ethers": "^5",
|
2023-04-08 15:17:52 -04:00
|
|
|
"ganache": "^7.7.7",
|
|
|
|
"mocha": "^10.2.0",
|
2023-05-02 18:19:28 -04:00
|
|
|
"pouchdb": "^8.0.1",
|
|
|
|
"pouchdb-collate": "^8.0.1",
|
2023-04-08 15:17:52 -04:00
|
|
|
"prettier": "^2.3.0",
|
2023-05-02 18:19:28 -04:00
|
|
|
"rimraf": "^5.0.0",
|
|
|
|
"ts-mocha": "^10.0.0",
|
2023-04-08 15:17:52 -04:00
|
|
|
"ts-node": "^10.9.1",
|
|
|
|
"tsconfig-paths": "^4.1.2",
|
|
|
|
"typechain": "^8.1.1",
|
2023-04-29 12:44:05 -04:00
|
|
|
"typescript": "^5.0.4"
|
|
|
|
},
|
2023-05-02 18:19:28 -04:00
|
|
|
"scripts": {
|
2023-05-13 15:30:21 -04:00
|
|
|
"build": "",
|
2023-05-02 18:19:28 -04:00
|
|
|
"test": "yarn run ts-mocha",
|
|
|
|
"test:fresh": "yarn clean:cache && yarn refresh:cache && yarn test",
|
|
|
|
"format": "prettier test/*.ts -w",
|
|
|
|
"clean": "rimraf node_modules",
|
|
|
|
"clean:build": "rimraf -I build",
|
|
|
|
"clean:cache": "rimraf -I cache/*",
|
|
|
|
"refresh:cache": "cp -r references/* cache",
|
|
|
|
"format:all": "yarn workspaces foreach run format",
|
|
|
|
"format:sdk": "yarn workspace @tornado/sdk run format",
|
|
|
|
"format:core": "yarn workspace @tornado/sdk-core run format",
|
|
|
|
"format:web": "yarn workspace @tornado/sdk-web run format",
|
|
|
|
"format:data": "yarn workspace @tornado/sdk-data run format",
|
|
|
|
"format:crypto": "yarn workspace @tornado/sdk-crypto run format",
|
|
|
|
"format:chain": "yarn workspace @tornado/sdk-chain run format",
|
|
|
|
"format:utils": "yarn workspace @tornado/sdk-utils run format",
|
2023-05-08 18:07:42 -04:00
|
|
|
"docs": "yarn workspace @tornado/sdk run typedoc --out ../../docs/api src/index.ts",
|
2023-05-14 15:02:34 -04:00
|
|
|
"compile": "yarn workspaces foreach run build",
|
|
|
|
"compile:sdk": "yarn workspace @tornado/sdk build",
|
|
|
|
"compile:core": "yarn workspace @tornado/sdk-core build",
|
|
|
|
"compile:web": "yarn workspace @tornado/sdk-web build",
|
|
|
|
"compile:data": "yarn workspace @tornado/sdk-data build",
|
|
|
|
"compile:crypto": "yarn workspace @tornado/sdk-crypto build",
|
|
|
|
"compile:chain": "yarn workspace @tornado/sdk-chain build",
|
|
|
|
"compile:utils": "yarn workspace @tornado/sdk-utils build",
|
|
|
|
"prepare": "yarn workspaces foreach run format && yarn workspaces foreach run build",
|
2023-05-06 19:59:38 -04:00
|
|
|
"prepare:sdk": "yarn format:sdk && yarn compile:sdk",
|
|
|
|
"prepare:core": "yarn format:core && yarn compile:core",
|
|
|
|
"prepare:web": "yarn format:web && yarn compile:web",
|
|
|
|
"prepare:data": "yarn format:data && yarn compile:data",
|
|
|
|
"prepare:crypto": "yarn format:crypto && yarn compile:crypto",
|
|
|
|
"prepare:chain": "yarn format:chain && yarn compile:chain",
|
|
|
|
"prepare:utils": "yarn format:utils && yarn compile:utils",
|
2023-05-02 18:19:28 -04:00
|
|
|
"typechain": "yarn typechain:test && yarn typechain:core && yarn typechain:chain",
|
|
|
|
"typechain:test": "typechain --target \"ethers-v5\" --discriminate-types --glob \"./abis/*.json\" --out-dir=\"./test/deth\"",
|
|
|
|
"typechain:core": "typechain --target \"ethers-v5\" --discriminate-types --glob \"./abis/*.json\" --out-dir=\"./@tornado/sdk-core/src/deth\"",
|
|
|
|
"typechain:chain": "typechain --target \"ethers-v5\" --discriminate-types --glob \"./abis/*.json\" --out-dir=\"./@tornado/sdk-chain/src/deth\"",
|
2023-05-11 17:25:47 -04:00
|
|
|
"packall": "mkdir -p packages && yarn workspaces foreach --no-private pack --out \"../../packages/%s-@%v.zip\" && rename -a '@' '' packages/*"
|
2023-05-02 18:19:28 -04:00
|
|
|
},
|
2023-04-29 12:44:05 -04:00
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"dependenciesMeta": {
|
|
|
|
"tsconfig-paths@4.2.0": {
|
|
|
|
"unplugged": true
|
|
|
|
}
|
2023-05-11 15:41:44 -04:00
|
|
|
},
|
|
|
|
"stableVersion": "0.0.8-alpha"
|
2023-04-08 15:17:52 -04:00
|
|
|
}
|