@gravito/flare 1.0.0-alpha.6 → 1.0.0

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 CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@gravito/flare",
3
- "version": "1.0.0-alpha.6",
3
+ "version": "1.0.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
7
  "description": "Lightweight, high-performance notification system for Gravito framework. Supports multiple channels (mail, database, broadcast, slack, sms) with zero runtime overhead.",
8
- "module": "./dist/index.mjs",
9
8
  "main": "./dist/index.cjs",
9
+ "module": "./dist/index.js",
10
10
  "type": "module",
11
11
  "types": "./dist/index.d.ts",
12
12
  "exports": {
13
13
  ".": {
14
14
  "types": "./dist/index.d.ts",
15
- "import": "./dist/index.mjs",
15
+ "import": "./dist/index.js",
16
16
  "require": "./dist/index.cjs"
17
17
  }
18
18
  },
@@ -24,7 +24,9 @@
24
24
  "scripts": {
25
25
  "build": "bun run build.ts",
26
26
  "test": "bun test",
27
- "typecheck": "tsc --noEmit"
27
+ "typecheck": "bun tsc -p tsconfig.json --noEmit --skipLibCheck",
28
+ "test:coverage": "bun test --coverage --coverage-threshold=80",
29
+ "test:ci": "bun test --coverage --coverage-threshold=80"
28
30
  },
29
31
  "keywords": [
30
32
  "gravito",
@@ -38,15 +40,16 @@
38
40
  "author": "Carl Lee <carllee0520@gmail.com>",
39
41
  "license": "MIT",
40
42
  "dependencies": {
41
- "gravito-core": "1.0.0-beta.5"
43
+ "@gravito/core": "workspace:*"
42
44
  },
43
45
  "peerDependencies": {
44
- "@gravito/stream": "1.0.0-alpha.6",
45
- "@gravito/signal": "1.0.0-alpha.6",
46
- "@gravito/radiance": "1.0.0-alpha.6"
46
+ "@gravito/stream": "workspace:*",
47
+ "@gravito/signal": "workspace:*",
48
+ "@gravito/radiance": "workspace:*"
47
49
  },
48
50
  "devDependencies": {
49
51
  "bun-types": "latest",
52
+ "tsup": "^8.5.1",
50
53
  "typescript": "^5.9.3"
51
54
  },
52
55
  "homepage": "https://github.com/gravito-framework/gravito#readme",
@@ -55,4 +58,4 @@
55
58
  "url": "git+https://github.com/gravito-framework/gravito.git",
56
59
  "directory": "packages/flare"
57
60
  }
58
- }
61
+ }