-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2 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
{
"name": "logifai",
"version": "0.3.0",
"description": "Auto-capture development command output and search/analyze with Claude Code",
"type": "module",
"bin": {
"logifai": "scripts/bin-wrapper.mjs"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Tomoya Fujita",
"repository": {
"type": "git",
"url": "git+https://github.com/tomoyaf/logifai.git"
},
"homepage": "https://github.com/tomoyaf/logifai#readme",
"bugs": {
"url": "https://github.com/tomoyaf/logifai/issues"
},
"files": [
"dist",
"!dist/__tests__",
"!dist/tools",
"scripts",
"skills",
".claude-plugin",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "node --test dist/__tests__/*.test.js",
"pretest": "tsc",
"postinstall": "node scripts/postinstall.mjs",
"prepublishOnly": "npm run build && npm test",
"generate-logs": "node dist/tools/log-generator.js",
"build:binary": "bun build --compile ./src/cli.ts --outfile logifai",
"build:linux-x64": "bun build --compile --target=bun-linux-x64 ./src/cli.ts --outfile dist/logifai-linux-x64",
"build:linux-arm64": "bun build --compile --target=bun-linux-arm64 ./src/cli.ts --outfile dist/logifai-linux-arm64",
"build:darwin-x64": "bun build --compile --target=bun-darwin-x64 ./src/cli.ts --outfile dist/logifai-darwin-x64",
"build:darwin-arm64": "bun build --compile --target=bun-darwin-arm64 ./src/cli.ts --outfile dist/logifai-darwin-arm64",
"build:windows-x64": "bun build --compile --target=bun-windows-x64 ./src/cli.ts --outfile dist/logifai-windows-x64.exe",
"build:all": "npm run build:linux-x64 && npm run build:linux-arm64 && npm run build:darwin-x64 && npm run build:darwin-arm64 && npm run build:windows-x64"
},
"engines": {
"node": ">=20"
},
"keywords": [
"logging",
"capture",
"cli",
"claude-code",
"developer-tools"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
}
}