-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.01 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
88
89
{
"name": "js-delegatable",
"version": "0.0.0-beta.0",
"license": "MIT",
"authors": [
{
"name": "Dan Finlay"
},
{
"name": "Kames Geraghty"
}
],
"source": "src/index.ts",
"typings": "dist/index.d.ts",
"type": "module",
"exports": {
"require": "./dist/delegatable.cjs",
"default": "./dist/delegatable.modern.js"
},
"main": "./dist/delegatable.cjs",
"module": "./dist/delegatable.module.js",
"unpkg": "./dist/delegatable.umd.js",
"files": [
"dist",
"src"
],
"bin": {
"dts": "./node_modules/bin/dts"
},
"scripts": {
"analyze": "size-limit --why",
"build": "microbundle",
"lint": "dts lint",
"prepare": "husky install ; microbundle",
"size": "size-limit",
"start": "microbundle watch",
"test": "dts test",
"docs": "typedoc ./src/index.ts -plugin typedoc-plugin-markdown --hideBreadcrumbs true --namedAnchors true",
"docs:html": "typedoc --plugin none --out docs"
},
"husky": {
"hooks": {
"pre-commit": "dts lint",
"commit-msg": "dts lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"testEnvironment": "node"
},
"engines": {
"node": ">=12"
},
"size-limit": [
{
"path": "dist/js-delegatable.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/js-delegatable.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@size-limit/preset-small-lib": "^8.1.0",
"@tsconfig/recommended": "^1.0.1",
"dts-cli": "^1.6.0",
"husky": "^8.0.2",
"microbundle": "^0.15.1",
"size-limit": "^8.1.0",
"tslib": "^2.4.1",
"typedoc": "^0.23.21",
"typedoc-plugin-markdown": "^3.11.8",
"typescript": "^4.9.3"
},
"dependencies": {
"@metamask/eth-sig-util": "^4.0.1",
"eth-simple-keyring": "^4.2.0",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.7.2"
}
}