9419f0673c
Signed-off-by: T-Hax <>
63 lines
1.7 KiB
JSON
63 lines
1.7 KiB
JSON
{
|
|
"name": "@tornado/sdk",
|
|
"author": "T-Hax",
|
|
"license": "ISC",
|
|
"description": "The Tornado SDK.",
|
|
"repository": "https://development.tornadocash.community/T-Hax/sdk-data",
|
|
"homepage": "https://tornadocash.community",
|
|
"keywords": [
|
|
"ethereum",
|
|
"crypto",
|
|
"zk"
|
|
],
|
|
"version": "2023.04.28",
|
|
"engines": {
|
|
"node": "^18"
|
|
},
|
|
"dependencies": {
|
|
"@tornado/sdk-chain": "workspace:*",
|
|
"@tornado/sdk-core": "workspace:*",
|
|
"@tornado/sdk-crypto": "workspace:*",
|
|
"@tornado/sdk-data": "workspace:*",
|
|
"@tornado/sdk-utils": "workspace:*",
|
|
"@tornado/sdk-web": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.15.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.54.1",
|
|
"@typescript-eslint/parser": "^5.54.1",
|
|
"dotenv": "^16.0.3",
|
|
"eslint": "^8.35.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"ethers": "^5",
|
|
"prettier": "^2.3.0",
|
|
"ts-node": "^10.9.1",
|
|
"tsconfig-paths": "^4.1.2",
|
|
"typescript": "^5.0.4"
|
|
},
|
|
"main": "./build/index.js",
|
|
"scripts": {
|
|
"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",
|
|
"clean": "rm -rf --interactive=never cache/*",
|
|
"format": "prettier src/*.ts -w"
|
|
},
|
|
"files": [
|
|
"build/lib/**/*",
|
|
"build/index.*",
|
|
"build/types/**/*"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"dependenciesMeta": {
|
|
"tsconfig-paths@4.2.0": {
|
|
"unplugged": true
|
|
}
|
|
}
|
|
}
|