-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 990 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 990 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@locusai/locus-cron",
"version": "0.26.6",
"description": "Standalone cron job scheduler for Locus with PM2 worker support",
"type": "module",
"bin": {
"locus-cron": "./bin/locus-cron.js"
},
"files": [
"bin",
"package.json",
"README.md"
],
"locus": {
"displayName": "Cron",
"description": "Standalone cron job scheduler with human-readable intervals",
"commands": [
"cron"
],
"version": "0.1.0"
},
"scripts": {
"build": "bun build src/cli.ts --outfile bin/locus-cron.js --target node",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"format": "biome format --write .",
"clean": "rm -rf dist bin node_modules"
},
"dependencies": {
"@locusai/locus-pm2": "^0.26.6",
"@locusai/sdk": "^0.26.6"
},
"devDependencies": {
"typescript": "^5.8.3"
},
"keywords": [
"locusai-package",
"locus",
"cron"
],
"engines": {
"node": ">=18"
},
"license": "MIT"
}