-
-
Notifications
You must be signed in to change notification settings - Fork 308
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.87 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.87 KB
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
{
"name": "@metamask/controller-utils",
"version": "13.0.0",
"description": "Data and convenience functions shared by multiple packages",
"keywords": [
"Ethereum",
"MetaMask"
],
"homepage": "https://github.com/MetaMask/core/tree/main/packages/controller-utils#readme",
"bugs": {
"url": "https://github.com/MetaMask/core/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/core.git"
},
"files": [
"dist/"
],
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"build:all": "tsc --build tsconfig.build.json --verbose",
"build:clean": "yarn build:only-clean && yarn build",
"build:docs": "typedoc",
"build:only-clean": "rimraf './dist' './tsconfig.build.tsbuildinfo'",
"changelog:update": "../../scripts/update-changelog.sh @metamask/controller-utils",
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/controller-utils",
"lint:tsconfigs": "tsx ../../scripts/lint-tsconfigs/lint-tsconfigs.mts",
"lint:tsconfigs:fix": "tsx ../../scripts/lint-tsconfigs/lint-tsconfigs.mts --fix",
"since-latest-release": "../../scripts/since-latest-release.sh",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
"test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@metamask/eth-query": "^4.0.0",
"@metamask/ethjs-unit": "^0.3.0",
"@metamask/utils": "^12.0.0",
"@signinwithethereum/siwe-parser": "^4.2.1",
"@types/bn.js": "^5.2.0",
"bignumber.js": "^9.1.2",
"bn.js": "^5.2.5",
"cockatiel": "^3.2.1",
"eth-ens-namehash": "^2.0.8",
"fast-deep-equal": "^3.1.3",
"lodash-es": "^4.18.1"
},
"devDependencies": {
"@babel/runtime": "^7.23.9",
"@metamask/auto-changelog": "^6.2.1",
"@metamask/eth-json-rpc-provider": "^7.0.0",
"@types/jest": "^30.0.0",
"@types/lodash-es": "^4.17.12",
"@typescript/native": "npm:typescript@^7.0.2",
"deepmerge": "^4.3.1",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"nock": "^13.5.6",
"rimraf": "^6.1.3",
"ts-jest": "^29.4.12",
"tsx": "^4.23.15",
"typedoc": "^0.25.13",
"typedoc-plugin-missing-exports": "^2.0.0",
"typescript": "npm:@typescript/typescript6@^6.0.2"
},
"peerDependencies": {
"@babel/runtime": "^7.0.0"
},
"engines": {
"node": "^22.14.0 || ^24"
}
}