-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 794 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 794 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
{
"name": "kuro",
"version": "1.0.0",
"description": "Background HTTP Cron Scheduler - Lightweight, fast, and easy to use",
"type": "module",
"main": "src/index.ts",
"bin": {
"kuro": "./dist/kuro"
},
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --compile --outfile dist/kuro",
"build:all": "bun run scripts/build-all.ts",
"start": "bun src/index.ts",
"test": "bun test"
},
"keywords": [
"cron",
"scheduler",
"http",
"background-jobs",
"task-scheduler",
"webhook",
"automation"
],
"author": "",
"license": "MIT",
"dependencies": {
"@clack/prompts": "^0.8.2",
"cron-parser": "^4.9.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"bun-types": "latest"
}
}