-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.27 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.27 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
{
"name": "codetime-cli-workspace",
"type": "module",
"version": "0.3.3",
"private": true,
"packageManager": "pnpm@11.1.2",
"scripts": {
"build": "pnpm -r --if-present build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"sync:local": "tsx packages/cli/src/main.ts backfill import --source all",
"sync:local:force": "tsx packages/cli/src/main.ts backfill import --source all --force",
"sync:local:plan": "tsx packages/cli/src/main.ts backfill plan --source all --dry-run",
"hooks:detect": "tsx packages/cli/src/main.ts detect",
"hooks:install": "tsx packages/cli/src/main.ts install",
"hooks:install:plan": "tsx packages/cli/src/main.ts install --dry-run",
"hooks:link": "pnpm --filter codetime-cli build && cd packages/cli && pnpm link --global --ignore-workspace",
"hooks:unlink": "cd packages/cli && pnpm unlink --global --ignore-workspace",
"test": "pnpm build && pnpm -r --if-present test",
"release": "bash scripts/release.sh",
"release:dry": "bash scripts/release.sh --dry"
},
"devDependencies": {
"@jannchie/eslint-config": "^3.7.9",
"@types/node": "^25.8.0",
"eslint": "^10.4.0",
"tsx": "^4.22.1",
"typescript": "^6.0.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}