-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.07 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@jvalentini/worklog",
"version": "4.0.0",
"description": "Generate daily stand-up summaries from AI coding sessions, git commits, and GitHub activity",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/jvalentini/worklog.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"cli",
"productivity",
"git",
"github",
"ai",
"coding",
"standup",
"worklog"
],
"author": "Justin Valentini",
"license": "MIT",
"main": "./bin/worklog.ts",
"exports": {
".": "./bin/worklog.ts"
},
"bin": {
"worklog": "./bin/worklog.ts"
},
"scripts": {
"dev": "bun run bin/worklog.ts",
"dev:dashboard": "bun --watch bin/worklog.ts -D",
"build": "bun run build:all",
"build:all": "bun run build:darwin-arm64 && bun run build:darwin-x64 && bun run build:linux-x64 && bun run build:linux-arm64 && bun run build:windows-x64",
"build:darwin-arm64": "bun build bin/worklog.ts --compile --target=bun-darwin-arm64 --outfile=dist/worklog-darwin-arm64",
"build:darwin-x64": "bun build bin/worklog.ts --compile --target=bun-darwin-x64 --outfile=dist/worklog-darwin-x64",
"build:linux-x64": "bun build bin/worklog.ts --compile --target=bun-linux-x64 --outfile=dist/worklog-linux-x64",
"build:linux-arm64": "bun build bin/worklog.ts --compile --target=bun-linux-arm64 --outfile=dist/worklog-linux-arm64",
"build:windows-x64": "bun build bin/worklog.ts --compile --target=bun-windows-x64 --outfile=dist/worklog-windows-x64.exe",
"lint": "biome check . && oxlint",
"lint:fix": "biome check --write . && oxlint --fix",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"check": "bun run lint && bun run typecheck",
"test": "bun test src",
"prepare": "lefthook install"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@types/bun": "latest",
"lefthook": "^2.0.13",
"oxlint": "^1.36.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"zod": "^4.3.4"
}
}