@holo-js/notifications 0.1.3

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/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@holo-js/notifications",
3
+ "version": "0.1.3",
4
+ "description": "Holo-JS Framework - notification contracts, channels, and fluent dispatch helpers",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "import": "./dist/index.mjs",
11
+ "default": "./dist/index.mjs"
12
+ },
13
+ "./contracts": {
14
+ "types": "./dist/contracts.d.ts",
15
+ "import": "./dist/contracts.mjs",
16
+ "default": "./dist/contracts.mjs"
17
+ }
18
+ },
19
+ "main": "./dist/index.mjs",
20
+ "types": "./dist/index.d.ts",
21
+ "files": [
22
+ "dist"
23
+ ],
24
+ "scripts": {
25
+ "build": "tsup",
26
+ "stub": "tsup",
27
+ "typecheck": "tsc -p tsconfig.json --noEmit",
28
+ "test": "vitest --run"
29
+ },
30
+ "dependencies": {
31
+ "@holo-js/config": "^0.1.3"
32
+ },
33
+ "peerDependencies": {
34
+ "@holo-js/queue": "^0.1.3"
35
+ },
36
+ "peerDependenciesMeta": {
37
+ "@holo-js/queue": {
38
+ "optional": true
39
+ }
40
+ },
41
+ "devDependencies": {
42
+ "@types/node": "^22.10.2",
43
+ "tsup": "^8.3.5",
44
+ "typescript": "^5.7.2",
45
+ "vitest": "^2.1.8"
46
+ }
47
+ }