forked from vincent-k2026/codachi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.24 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.24 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
{
"name": "codachi",
"version": "0.2.0",
"description": "A tamagotchi that lives in your Claude Code statusline",
"type": "module",
"main": "dist/index.js",
"bin": {
"codachi": "dist/index.js",
"codachi-hook": "dist/hook.js"
},
"files": [
"dist",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc && node scripts/copy-assets.mjs",
"dev": "tsc --watch",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"bench": "npm run build && node scripts/bench.mjs",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"tamagotchi",
"pet",
"claude-code",
"statusline",
"ascii-art",
"terminal",
"cli"
],
"author": "vincent-k2026",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vincent-k2026/codachi.git"
},
"homepage": "https://github.com/vincent-k2026/codachi#readme",
"bugs": {
"url": "https://github.com/vincent-k2026/codachi/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^2.1.9",
"typescript": "^6.0.2",
"vitest": "^2.1.9"
}
}