└── typechain /typechain: -------------------------------------------------------------------------------- 1 | { 2 | "name": "typechain", 3 | "version": "1.0.0", 4 | "description": "Изучение TypeScript с помощью создания блокчейна.", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "tsc-watch --onSuccess \"node dist/index.js\" ", 8 | "test": "echo \"Error: no test specified\" && exit 1" 9 | }, 10 | "author": "Damastier", 11 | "license": "ISC", 12 | "dependencies": { 13 | "crypto-js": "^4.1.1", 14 | "typescript": "^4.5.5" 15 | }, 16 | "devDependencies": { 17 | "tsc-watch": "^4.6.0" 18 | } 19 | } 20 | --------------------------------------------------------------------------------