UNPKG

@iexec/web3telegram

Version:

Enables secure, blockchain-based messaging by encrypting Telegram user IDs for privacy. It lets users message Ethereum account holders without knowing their Telegram details.

80 lines (79 loc) 3.29 kB
{ "name": "@iexec/web3telegram", "version": "0.1.0-alpha.7", "description": "Enables secure, blockchain-based messaging by encrypting Telegram user IDs for privacy. It lets users message Ethereum account holders without knowing their Telegram details.", "main": "./dist/index.js", "type": "module", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "node": "./dist/index.js", "default": "./dist/index.js" } }, "files": [ "logo-iexec.png", "src", "dist" ], "scripts": { "build": "rm -rf dist && tsc --project tsconfig.build.json", "check-types": "tsc --noEmit", "test:prepare": "node tests/scripts/prepare-bellecour-fork-for-tests.js && node tests/scripts/prepare-iexec.js", "test": "NODE_OPTIONS=--experimental-vm-modules jest --testMatch \"**/tests/**/*.test.ts\" --forceExit -b", "test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --testMatch \"**/tests/**/*.test.ts\" --forceExit --coverage", "test:unit": "NODE_OPTIONS=--experimental-vm-modules jest --testMatch \"**/tests/unit/**/*.test.ts\" -b", "test:unit:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --testMatch \"**/tests/unit/**/*.unit.ts\" --coverage", "test:e2e": "NODE_OPTIONS=--experimental-vm-modules jest --testMatch \"**/tests/e2e/**/*.test.ts\" --forceExit -b", "test:e2e:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --testMatch \"**/tests/e2e/**/*.test.ts\" --coverage", "lint": "eslint .", "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"", "check-format": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"", "stop-test-stack": "cd tests && docker compose down --volumes --remove-orphans", "start-test-stack": "cd tests && npm run stop-test-stack && node scripts/prepare-test-env.js && docker compose build && docker compose up -d && npm run test:prepare" }, "repository": { "type": "git", "url": "git+https://github.com/iExecBlockchainComputing/web3telegram-sdk.git" }, "keywords": [ "iExec" ], "author": "iExec", "license": "Apache-2.0", "bugs": { "url": "https://github.com/iExecBlockchainComputing/web3telegram-sdk/issues" }, "homepage": "https://github.com/iExecBlockchainComputing/web3telegram-sdk#readme", "dependencies": { "@ethersproject/bytes": "^5.7.0", "@ethersproject/random": "^5.7.0", "@iexec/dataprotector": "^2.0.0-beta.21", "buffer": "^6.0.3", "ethers": "^6.8.1", "graphql-request": "^6.1.0", "iexec": "^8.22.0", "kubo-rpc-client": "^4.1.3", "yup": "^1.1.1" }, "devDependencies": { "@jest/globals": "^29.7.0", "@swc/core": "^1.3.96", "@swc/jest": "^0.2.29", "@types/jest": "^29.5.4", "@typescript-eslint/eslint-plugin": "^6.7.5", "@typescript-eslint/parser": "^6.7.5", "eslint": "^8.51.0", "eslint-config-airbnb-typescript": "^17.1.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-import": "^2.28.1", "eslint-plugin-jest": "^27.4.2", "eslint-plugin-sonarjs": "^0.21.0", "jest": "^29.7.0", "prettier": "^2.8.4", "rimraf": "^5.0.7", "typescript": "^4.9.5", "whitelist-smart-contract": "github:iExecBlockchainComputing/whitelist-smart-contract#v1.1.0" } }