@visulima/notification 0.0.1
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/README.md +12 -0
- package/package.json +45 -0
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# @visulima/notification
|
|
2
|
+
|
|
3
|
+
> 🚧 **Placeholder** — this name is reserved. The full multi-channel notification library is coming soon.
|
|
4
|
+
|
|
5
|
+
A reusable, ESM-only, edge-ready multi-channel notification library with SMS, push, chat, in-app and webhook providers.
|
|
6
|
+
|
|
7
|
+
- Homepage: https://visulima.com/packages/notification
|
|
8
|
+
- Repository: https://github.com/visulima/visulima/tree/main/packages/notification/notification
|
|
9
|
+
|
|
10
|
+
## License
|
|
11
|
+
|
|
12
|
+
[MIT](https://github.com/visulima/visulima/blob/main/LICENSE.md) © [Daniel Bannert](https://github.com/prisis)
|
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@visulima/notification",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "A reusable, ESM-only, edge-ready multi-channel notification library — placeholder, full release coming soon.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"notification",
|
|
7
|
+
"notifications",
|
|
8
|
+
"multi-channel",
|
|
9
|
+
"visulima"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://visulima.com/packages/notification",
|
|
12
|
+
"bugs": "https://github.com/visulima/visulima/issues",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/visulima/visulima.git",
|
|
16
|
+
"directory": "packages/notification/notification"
|
|
17
|
+
},
|
|
18
|
+
"funding": [
|
|
19
|
+
{
|
|
20
|
+
"type": "github",
|
|
21
|
+
"url": "https://github.com/sponsors/prisis"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"type": "consulting",
|
|
25
|
+
"url": "https://anolilab.com/support"
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"author": {
|
|
30
|
+
"name": "Daniel Bannert",
|
|
31
|
+
"email": "d.bannert@anolilab.de"
|
|
32
|
+
},
|
|
33
|
+
"sideEffects": false,
|
|
34
|
+
"type": "module",
|
|
35
|
+
"files": [
|
|
36
|
+
"README.md"
|
|
37
|
+
],
|
|
38
|
+
"engines": {
|
|
39
|
+
"node": "^22.14.0 || >=24.10.0"
|
|
40
|
+
},
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public",
|
|
43
|
+
"provenance": false
|
|
44
|
+
}
|
|
45
|
+
}
|