-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@ylide/ethereum",
"private": false,
"publishConfig": {
"access": "public"
},
"version": "0.9.0-beta.6",
"description": "Ylide Protocol SDK implementation for EVM-based blockchains",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ylide-io/ethereum.git"
},
"files": [
"lib/**/*",
"src/**/*"
],
"scripts": {
"test": "mocha -r ts-node/register 'test/**.ts'",
"build": "rimraf ./lib && tsc --project build-tsconfig.json",
"start": "ts-node ./src/index.ts",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint"
},
"keywords": [
"blockchain",
"ethereum",
"messaging",
"communication"
],
"author": "Danila Simonov",
"license": "ISC",
"dependencies": {
"@ensdomains/ensjs": "3.0.0-alpha.64",
"@ethersproject/abi": "5.7.0",
"@ethersproject/abstract-provider": "5.7.0",
"@ethersproject/logger": "5.7.0",
"@ethersproject/properties": "5.7.0",
"@ethersproject/providers": "5.7.2",
"@ylide/ethereum-contracts": "0.8.0-beta.20",
"@ylide/sdk": "0.9.0-beta.6",
"@ylide/smart-buffer": "0.0.17",
"ethers": "5.7.2",
"eventemitter3": "5.0.1",
"semaphore-promise": "1.4.1"
},
"devDependencies": {
"@ethersproject/bytes": "5.7.0",
"@nomicfoundation/hardhat-chai-matchers": "1.0.5",
"@nomicfoundation/hardhat-network-helpers": "1.0.8",
"@nomicfoundation/hardhat-toolbox": "2.0.1",
"@nomiclabs/hardhat-ethers": "2.2.2",
"@nomiclabs/hardhat-etherscan": "3.1.5",
"@typechain/ethers-v5": "10.2.0",
"@typechain/hardhat": "6.1.5",
"@types/chai": "4.3.5",
"@types/mocha": "10.0.1",
"@types/node": "20.5.3",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.0",
"chai": "4.3.7",
"eslint": "8.47.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-jsdoc": "39.6.8",
"eslint-plugin-prefer-arrow": "1.2.3",
"hardhat": "2.13.0",
"hardhat-gas-reporter": "1.0.9",
"mocha": "10.2.0",
"prettier": "3.0.2",
"rimraf": "5.0.1",
"solidity-coverage": "0.8.2",
"ts-node": "10.9.1",
"tweetnacl": "1.0.3",
"typechain": "8.1.1",
"typescript": "5.1.6"
}
}