-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
55 lines (55 loc) · 1.53 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
{
"name": "web3-domain-resolver",
"version": "1.0.7",
"description": "Web3 Library that enable with just one function to resolve domains on multiple web3 providers such as ENS, UnstoppableDomains and Freename",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && node --trace-warnings ./lib/index.js",
"lint:js:fix": "eslint --ignore-path .gitignore . --fix"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FreenameDomains/web3-domain-resolver.git"
},
"keywords": [
"web3",
"domain",
"resolver",
"freename",
"unstoppable",
"ens"
],
"author": "Cardinal",
"license": "MIT",
"bugs": {
"url": "https://github.com/FreenameDomains/web3-domain-resolver/issues"
},
"homepage": "https://github.com/FreenameDomains/web3-domain-resolver#readme",
"devDependencies": {
"@types/lodash": "^4.14.182",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.indexof": "^4.0.7",
"@types/lodash.sortby": "^4.7.7",
"@types/node": "^18.6.5",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0"
},
"peerDependencies": {
"ethers": "^5.6.9"
},
"dependencies": {
"@unstoppabledomains/resolution": "9.2.2",
"axios": "0.27.2",
"lodash.clonedeep": "4.5.0",
"lodash.indexof": "4.0.5",
"lodash.sortby": "4.7.0",
"punycode": "^2.1.1"
}
}