A command-line journaling application
1{
2 "name": "hayom",
3 "version": "0.1.0",
4 "type": "module",
5 "license": "GPL-3.0-or-later",
6 "bin": {
7 "hayom": "./cli.ts"
8 },
9 "scripts": {
10 "test": "bun test ./test.ts",
11 "check": "bunx tsc --noEmit",
12 "install-cli": "bun link"
13 },
14 "dependencies": {
15 "chrono-node": "^2.9.0",
16 "luxon": "^3.7.2",
17 "smol-toml": "^1.3.1"
18 },
19 "devDependencies": {
20 "@types/luxon": "^3.7.1",
21 "bun-types": "latest",
22 "typescript": "^5.0.0"
23 }
24}