@metamask-previews/notification-services-controller 0.2.1-preview-21d139ea → 0.2.1-preview-5a93d655
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/notification-services/constants/package.json +9 -0
- package/notification-services/mocks/package.json +9 -0
- package/notification-services/package.json +9 -0
- package/notification-services/processors/package.json +9 -0
- package/notification-services/types/package.json +9 -0
- package/notification-services/ui/package.json +9 -0
- package/package.json +4 -2
- package/push-services/mocks/package.json +9 -0
- package/push-services/package.json +9 -0
- package/push-services/types/package.json +9 -0
- package/push-services/utils/package.json +9 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@metamask/notification-services-controller",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"main": "../../dist/NotificationServicesController/constants/index.js",
|
|
8
|
+
"types": "../../dist/types/NotificationServicesController/constants/index.d.ts"
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@metamask/notification-services-controller",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"main": "../../dist/NotificationServicesController/__fixtures__/index.js",
|
|
8
|
+
"types": "../../dist/types/NotificationServicesController/__fixtures__/index.d.ts"
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@metamask/notification-services-controller",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"main": "../dist/NotificationServicesController/index.js",
|
|
8
|
+
"types": "../dist/types/NotificationServicesController/index.d.ts"
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@metamask/notification-services-controller",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"main": "../../dist/NotificationServicesController/processors/index.js",
|
|
8
|
+
"types": "../../dist/types/NotificationServicesController/processors/index.d.ts"
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@metamask/notification-services-controller",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"main": "../../dist/NotificationServicesController/types/index.js",
|
|
8
|
+
"types": "../../dist/types/NotificationServicesController/types/index.d.ts"
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@metamask/notification-services-controller",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"main": "../../dist/NotificationServicesController/ui/index.js",
|
|
8
|
+
"types": "../../dist/types/NotificationServicesController/ui/index.d.ts"
|
|
9
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/notification-services-controller",
|
|
3
|
-
"version": "0.2.1-preview-
|
|
3
|
+
"version": "0.2.1-preview-5a93d655",
|
|
4
4
|
"description": "Manages New MetaMask decentralized Notification system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -77,7 +77,9 @@
|
|
|
77
77
|
"main": "./dist/index.js",
|
|
78
78
|
"types": "./dist/types/index.d.ts",
|
|
79
79
|
"files": [
|
|
80
|
-
"dist/"
|
|
80
|
+
"dist/",
|
|
81
|
+
"notification-services/",
|
|
82
|
+
"push-services/"
|
|
81
83
|
],
|
|
82
84
|
"scripts": {
|
|
83
85
|
"build": "tsup --config ../../tsup.config.ts --tsconfig ./tsconfig.build.json --clean",
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@metamask/notification-services-controller",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"main": "../../dist/NotificationServicesPushController/__fixtures__/index.js",
|
|
8
|
+
"types": "../../dist/types/NotificationServicesPushController/__fixtures__/index.d.ts"
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@metamask/notification-services-controller",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"main": "../dist/NotificationServicesPushController/index.js",
|
|
8
|
+
"types": "../dist/types/NotificationServicesPushController/index.d.ts"
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@metamask/notification-services-controller",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"main": "../../dist/NotificationServicesPushController/types/index.js",
|
|
8
|
+
"types": "../../dist/types/NotificationServicesPushController/types/index.d.ts"
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@metamask/notification-services-controller",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"main": "../../dist/NotificationServicesPushController/utils/index.js",
|
|
8
|
+
"types": "../../dist/types/NotificationServicesPushController/utils/index.d.ts"
|
|
9
|
+
}
|