-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.98 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
{
"name": "@dentity/ens-client",
"repository": {
"url": "git+https://github.com/Dentity-Development/ens-client.git"
},
"version": "1.0.0",
"author": "Dentity",
"license": "MIT",
"description": "A package to get Dentity verifications of ENS domain owners",
"keywords": [],
"type": "module",
"engines": {
"node": ">=20"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsup",
"dev": "tsup --watch",
"lint": "eslint .",
"cz": "cz",
"test": "jest",
"test:watch": "jest --watchAll",
"test:cov": "jest --coverage",
"release": "semantic-release"
},
"devDependencies": {
"@eslint-recommended/eslint-config-typescript": "^50.1.0",
"@jest/globals": "^29.7.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"semantic-release": "^21.0.7",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "~5.5.4"
},
"dependencies": {
"@ensdomains/ensjs": "^4.0.1",
"axios": "^1.7.7",
"viem": "^2.21.16"
},
"resolutions": {
"wrap-ansi": "7.0.0",
"string-width": "4.2.3"
},
"bugs": {
"url": "https://github.com/Dentity-Development/ens-client/issues"
},
"homepage": "https://github.com/Dentity-Development/ens-client#readme",
"directories": {
"example": "examples",
"test": "tests"
}
}