@metamask-previews/compliance-controller 2.0.0-preview-b800567ef → 2.0.0-preview-60aa3d02f
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -6
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -10,7 +10,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
10
10
|
### Changed
|
|
11
11
|
|
|
12
12
|
- Bump `@metamask/messenger` from `^1.1.0` to `^1.1.1` ([#8373](https://github.com/MetaMask/core/pull/8373))
|
|
13
|
-
- Bump `@metamask/base-controller` from `^9.0.1` to `^9.1.0` ([#8457](https://github.com/MetaMask/core/pull/8457))
|
|
14
13
|
|
|
15
14
|
## [2.0.0]
|
|
16
15
|
|
|
@@ -37,11 +36,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
37
36
|
|
|
38
37
|
## [1.0.1]
|
|
39
38
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
- Fix package to include files, which were accidentally omitted in 1.0.0 ([#8016](https://github.com/MetaMask/core/pull/8016))
|
|
43
|
-
|
|
44
|
-
## [1.0.0] [DEPRECATED]
|
|
39
|
+
## [1.0.0]
|
|
45
40
|
|
|
46
41
|
### Added
|
|
47
42
|
|
package/package.json
CHANGED
|
@@ -1,26 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/compliance-controller",
|
|
3
|
-
"version": "2.0.0-preview-
|
|
3
|
+
"version": "2.0.0-preview-60aa3d02f",
|
|
4
4
|
"description": "Manages OFAC compliance checks for wallet addresses",
|
|
5
5
|
"keywords": [
|
|
6
|
-
"
|
|
7
|
-
"
|
|
6
|
+
"MetaMask",
|
|
7
|
+
"Ethereum"
|
|
8
8
|
],
|
|
9
9
|
"homepage": "https://github.com/MetaMask/core/tree/main/packages/compliance-controller#readme",
|
|
10
10
|
"bugs": {
|
|
11
11
|
"url": "https://github.com/MetaMask/core/issues"
|
|
12
12
|
},
|
|
13
|
-
"license": "MIT",
|
|
14
13
|
"repository": {
|
|
15
14
|
"type": "git",
|
|
16
15
|
"url": "https://github.com/MetaMask/core.git"
|
|
17
16
|
},
|
|
18
|
-
"
|
|
19
|
-
"dist/"
|
|
20
|
-
],
|
|
17
|
+
"license": "MIT",
|
|
21
18
|
"sideEffects": false,
|
|
22
|
-
"main": "./dist/index.cjs",
|
|
23
|
-
"types": "./dist/index.d.cts",
|
|
24
19
|
"exports": {
|
|
25
20
|
".": {
|
|
26
21
|
"import": {
|
|
@@ -34,10 +29,11 @@
|
|
|
34
29
|
},
|
|
35
30
|
"./package.json": "./package.json"
|
|
36
31
|
},
|
|
37
|
-
"
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
32
|
+
"main": "./dist/index.cjs",
|
|
33
|
+
"types": "./dist/index.d.cts",
|
|
34
|
+
"files": [
|
|
35
|
+
"dist/"
|
|
36
|
+
],
|
|
41
37
|
"scripts": {
|
|
42
38
|
"build": "ts-bridge --project tsconfig.build.json --verbose --clean --no-references",
|
|
43
39
|
"build:all": "ts-bridge --project tsconfig.build.json --verbose --clean",
|
|
@@ -53,7 +49,7 @@
|
|
|
53
49
|
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
|
|
54
50
|
},
|
|
55
51
|
"dependencies": {
|
|
56
|
-
"@metamask/base-controller": "^9.1
|
|
52
|
+
"@metamask/base-controller": "^9.0.1",
|
|
57
53
|
"@metamask/controller-utils": "^11.20.0",
|
|
58
54
|
"@metamask/messenger": "^1.1.1",
|
|
59
55
|
"@metamask/superstruct": "^3.1.0",
|
|
@@ -61,7 +57,7 @@
|
|
|
61
57
|
"reselect": "^5.1.1"
|
|
62
58
|
},
|
|
63
59
|
"devDependencies": {
|
|
64
|
-
"@metamask/auto-changelog": "^
|
|
60
|
+
"@metamask/auto-changelog": "^3.4.4",
|
|
65
61
|
"@ts-bridge/cli": "^0.6.4",
|
|
66
62
|
"@types/jest": "^29.5.14",
|
|
67
63
|
"deepmerge": "^4.2.2",
|
|
@@ -75,5 +71,9 @@
|
|
|
75
71
|
},
|
|
76
72
|
"engines": {
|
|
77
73
|
"node": "^18.18 || >=20"
|
|
74
|
+
},
|
|
75
|
+
"publishConfig": {
|
|
76
|
+
"access": "public",
|
|
77
|
+
"registry": "https://registry.npmjs.org/"
|
|
78
78
|
}
|
|
79
79
|
}
|