@fluojs/notifications 1.0.0-beta.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/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@fluojs/notifications",
3
+ "description": "Channel-agnostic notification orchestration with optional queue and lifecycle event seams for Fluo.",
4
+ "keywords": [
5
+ "fluo",
6
+ "notifications",
7
+ "messaging",
8
+ "queue",
9
+ "event-bus",
10
+ "channels"
11
+ ],
12
+ "version": "1.0.0-beta.1",
13
+ "private": false,
14
+ "license": "MIT",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/fluojs/fluo.git",
18
+ "directory": "packages/notifications"
19
+ },
20
+ "engines": {
21
+ "node": ">=20.0.0"
22
+ },
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "type": "module",
27
+ "exports": {
28
+ ".": {
29
+ "types": "./dist/index.d.ts",
30
+ "import": "./dist/index.js"
31
+ }
32
+ },
33
+ "main": "./dist/index.js",
34
+ "types": "./dist/index.d.ts",
35
+ "files": [
36
+ "dist"
37
+ ],
38
+ "dependencies": {
39
+ "@fluojs/core": "^1.0.0-beta.1",
40
+ "@fluojs/di": "^1.0.0-beta.1",
41
+ "@fluojs/runtime": "^1.0.0-beta.1"
42
+ },
43
+ "devDependencies": {
44
+ "vitest": "^3.2.4"
45
+ },
46
+ "scripts": {
47
+ "prebuild": "node ../../tooling/scripts/clean-dist.mjs",
48
+ "build": "pnpm exec babel src --extensions .ts --ignore 'src/**/*.test.ts' --out-dir dist --config-file ../../tooling/babel/babel.config.cjs && pnpm exec tsc -p tsconfig.build.json",
49
+ "typecheck": "pnpm exec tsc -p tsconfig.json --noEmit",
50
+ "test": "pnpm exec vitest run -c vitest.config.ts",
51
+ "test:watch": "pnpm exec vitest -c vitest.config.ts"
52
+ }
53
+ }