-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.06 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
{
"name": "codetime-cli",
"type": "module",
"version": "0.3.3",
"description": "codetime CLI — install AI-agent hooks (Claude Code, Codex, OpenCode, Pi) and report activity to codetime.dev.",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/codetime-dev/codetime-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/codetime-dev/codetime-cli.git"
},
"bugs": {
"url": "https://github.com/codetime-dev/codetime-cli/issues"
},
"keywords": [
"codetime",
"ai",
"agent",
"cli",
"tracking",
"activity"
],
"bin": {
"codetime": "./bin/codetime.mjs"
},
"files": [
"bin"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"build:bundle": "node bundle.mjs",
"prepublishOnly": "node bundle.mjs",
"test": "node --conditions=development --test --import tsx test/*.test.ts"
},
"devDependencies": {
"@codetime/shared": "workspace:*",
"cac": "^7.0.0",
"esbuild": "^0.28.0"
}
}