-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
87 lines (87 loc) · 1.82 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
81
82
83
84
85
86
87
{
"version": "1.0.3",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"src"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "rollup -c --watch",
"build": "rollup -c",
"build:demo": "node ./example/build.js",
"test": "tsdx test",
"lint": "tsdx lint",
"size": "size-limit"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint src test"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"testTimeout": 20000
},
"name": "@ensdomains/ens-avatar",
"author": "Muhammed Tanrıkulu <[email protected]>",
"size-limit": [
{
"path": "dist/index.js",
"limit": "200 KB",
"ignore": [
"jsdom"
]
},
{
"path": "dist/index.esm.js",
"limit": "150 KB",
"ignore": [
"jsdom"
]
}
],
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
"@size-limit/preset-small-lib": "^11.0.1",
"@types/dompurify": "^3.0.5",
"@types/jsdom": "^21.1.6",
"@types/moxios": "^0.4.17",
"@types/url-join": "^4.0.1",
"dotenv": "^16.3.1",
"esbuild": "^0.14.21",
"moxios": "^0.4.0",
"nock": "^13.2.2",
"rollup": "^4.9.1",
"size-limit": "^11.0.1",
"tsdx": "^0.14.1",
"typescript": "^4.5.5"
},
"dependencies": {
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"assert": "^2.1.0",
"axios": "^0.27.2",
"axios-cache-interceptor": "^0.9.3",
"buffer": "^6.0.3",
"dompurify": "^3.0.6",
"ethers": "6.12.0",
"is-svg": "^4.3.2",
"multiformats": "^9.6.2",
"url-join": "^4.0.1"
},
"volta": {
"node": "18.14.0"
}
}