-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.61 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.61 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
{
"name": "claude-code-wakatime",
"version": "4.0.0",
"description": "WakaTime plugin for Claude Code",
"bin": {
"claude-code-wakatime": "dist/index.js"
},
"scripts": {
"prebuild": "node scripts/generate-version.js",
"build": "esbuild src/index.ts --bundle --platform=node --outfile=dist/index.js",
"watch": "npm run prebuild && tsc --watch",
"release:major": "npm version major && npm run build && git commit -am \"build release\" && git push && git push --tags",
"release:minor": "npm version minor && npm run build && git commit -am \"build release\" && git push && git push --tags",
"release:patch": "npm version patch && npm run build && git commit -am \"build release\" && git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wakatime/claude-code-wakatime.git"
},
"keywords": [
"claude",
"claude-code",
"time-tracking",
"ai"
],
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/eslint": "^8.44.7",
"@types/node": "^20.9.2",
"@types/prettier": "^2.7.3",
"@types/semver": "^7.7.0",
"@types/which": "^3.0.4",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"adm-zip": "0.5.16",
"esbuild": "^0.25.12",
"eslint": "^8.54.0",
"prettier": "^3.1.0",
"semver": "^7.7.2",
"typescript": "^5.2.2",
"which": "^5.0.0"
},
"author": "WakaTime",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/wakatime/claude-code-wakatime/issues"
},
"homepage": "https://github.com/wakatime/claude-code-wakatime#readme"
}