@gravito/horizon 1.0.0-alpha.2

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,61 @@
1
+ {
2
+ "name": "@gravito/horizon",
3
+ "version": "1.0.0-alpha.2",
4
+ "description": "Distributed task scheduler for Gravito framework",
5
+ "main": "./dist/index.cjs",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "type": "module",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.mjs",
13
+ "require": "./dist/index.cjs"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "README.md",
19
+ "LICENSE"
20
+ ],
21
+ "scripts": {
22
+ "build": "bun run build.ts",
23
+ "test": "bun test",
24
+ "lint": "biome lint ./src",
25
+ "typecheck": "tsc --noEmit"
26
+ },
27
+ "keywords": [
28
+ "gravito",
29
+ "orbit",
30
+ "scheduler",
31
+ "cron",
32
+ "task"
33
+ ],
34
+ "author": "Carl Lee <carllee0520@gmail.com>",
35
+ "license": "MIT",
36
+ "dependencies": {},
37
+ "optionalDependencies": {
38
+ "cron-parser": "^4.9.0"
39
+ },
40
+ "peerDependencies": {
41
+ "gravito-core": "1.0.0-beta.2",
42
+ "@gravito/stasis": "1.0.0-beta.2",
43
+ "hono": "^4.11.1"
44
+ },
45
+ "devDependencies": {
46
+ "gravito-core": "1.0.0-beta.2",
47
+ "@gravito/stasis": "1.0.0-beta.2",
48
+ "bun-types": "latest",
49
+ "typescript": "^5.9.3",
50
+ "hono": "^4.11.1"
51
+ },
52
+ "publishConfig": {
53
+ "access": "public"
54
+ },
55
+ "homepage": "https://github.com/gravito-framework/gravito#readme",
56
+ "repository": {
57
+ "type": "git",
58
+ "url": "git+https://github.com/gravito-framework/gravito.git",
59
+ "directory": "packages/horizon"
60
+ }
61
+ }