2023-05-02 18:19:28 -04:00
|
|
|
{
|
|
|
|
"name": "@tornado/sdk-web",
|
|
|
|
"author": "T-Hax",
|
|
|
|
"license": "ISC",
|
|
|
|
"description": "Tornado SDK web utilities.",
|
2023-05-08 19:17:29 -04:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://development.tornadocash.community/T-Hax/sdk-utils"
|
|
|
|
},
|
2023-05-02 18:19:28 -04:00
|
|
|
"homepage": "https://tornadocash.community",
|
|
|
|
"keywords": [
|
|
|
|
"ethereum",
|
|
|
|
"crypto",
|
|
|
|
"zk"
|
|
|
|
],
|
2023-05-11 15:41:44 -04:00
|
|
|
"version": "0.0.9-alpha",
|
2023-05-02 18:19:28 -04:00
|
|
|
"engines": {
|
|
|
|
"node": "^18"
|
|
|
|
},
|
|
|
|
"main": "./build/index.js",
|
2023-05-09 12:47:36 -04:00
|
|
|
"files": [
|
|
|
|
"build/**/*"
|
|
|
|
],
|
2023-05-02 18:19:28 -04:00
|
|
|
"dependencies": {
|
|
|
|
"@ethersproject/providers": "^5.7.2",
|
|
|
|
"@tornado/sdk-data": "workspace:*",
|
|
|
|
"@tornado/sdk-utils": "workspace:*",
|
|
|
|
"axios": "^1.3.5",
|
|
|
|
"ethers": "^5",
|
|
|
|
"socks-proxy-agent": "^7.0.0",
|
2023-05-03 17:42:42 -04:00
|
|
|
"web3-providers-http": "npm:@tornado/web3-providers-http@^1.6.5-p1"
|
2023-05-02 18:19:28 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/big-integer": "^0.0.31",
|
|
|
|
"@types/chai": "^4.2.18",
|
|
|
|
"@types/fs-extra": "^11.0.1",
|
|
|
|
"@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",
|
|
|
|
"chai": "^4.3.4",
|
|
|
|
"conventional-changelog-cli": "^2.1.1",
|
|
|
|
"dotenv": "^16.0.3",
|
|
|
|
"eslint": "^8.35.0",
|
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
|
|
"ethereum-waffle": "^4.0.10",
|
|
|
|
"fs-extra": "^11.1.0",
|
|
|
|
"mocha": "^10.2.0",
|
|
|
|
"prettier": "^2.3.0",
|
2023-05-06 19:59:38 -04:00
|
|
|
"rimraf": "^5.0.0",
|
2023-05-02 18:19:28 -04:00
|
|
|
"source-map-support": "^0.5.19",
|
|
|
|
"ts-essentials": "^9.3.1",
|
|
|
|
"ts-node": "^10.9.1",
|
|
|
|
"tsc-alias": "^1.2.11",
|
|
|
|
"tsconfig-paths": "^4.1.2",
|
|
|
|
"typescript": "^5.0.4"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"test": "npm run build && mocha --inspect --require source-map-support/register --bail ./build/test/",
|
|
|
|
"typechain": "typechain --target \"ethers-v5\" --discriminate-types --glob \"./src/resources/abis/*.json\" --out-dir=\"./src/types/deth\"",
|
|
|
|
"build": "rimraf build && tsc && tsc-alias",
|
|
|
|
"preversion": "npm run lint && npm run build && npm test",
|
|
|
|
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && npm run format && git add -A",
|
|
|
|
"postversion": "git push --follow-tags && npm publish",
|
|
|
|
"lint": "eslint --ext ts,js --fix src",
|
|
|
|
"build-live": "tsc -w && tsc-alias -w",
|
2023-05-06 19:59:38 -04:00
|
|
|
"clean": "rm -rf --interactive=never docs/*",
|
2023-05-02 18:19:28 -04:00
|
|
|
"format": "prettier src/*.ts -w"
|
|
|
|
},
|
|
|
|
"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-05-02 18:19:28 -04:00
|
|
|
}
|