shuho 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +49 -0
  2. package/README.md +72 -0
  3. package/dist/index.js +1252 -0
  4. package/package.json +63 -0
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "shuho",
3
+ "version": "0.1.0",
4
+ "description": "GitHubの活動履歴から非エンジニアのクライアント向け週報の下書きを1コマンドで生成するCLI",
5
+ "type": "module",
6
+ "bin": {
7
+ "shuho": "./dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "!dist/**/*.map"
12
+ ],
13
+ "engines": {
14
+ "node": ">=20.0.0"
15
+ },
16
+ "keywords": [
17
+ "cli",
18
+ "github",
19
+ "weekly-report",
20
+ "freelance",
21
+ "llm",
22
+ "週報",
23
+ "報告書"
24
+ ],
25
+ "author": "alforge labs <support@alforgelabs.com>",
26
+ "license": "SEE LICENSE IN LICENSE",
27
+ "dependencies": {
28
+ "@anthropic-ai/sdk": "^0.109.0",
29
+ "@clack/prompts": "^1.6.0",
30
+ "@octokit/rest": "^22.0.1",
31
+ "commander": "^15.0.0",
32
+ "openai": "^6.45.0",
33
+ "smol-toml": "^1.7.0",
34
+ "zod": "^4.4.3"
35
+ },
36
+ "devDependencies": {
37
+ "@eslint/js": "^10.0.1",
38
+ "@types/node": "^26.0.1",
39
+ "@vitest/coverage-v8": "^4.1.9",
40
+ "eslint": "^10.6.0",
41
+ "eslint-config-prettier": "^10.1.8",
42
+ "prettier": "^3.9.4",
43
+ "tsup": "^8.5.1",
44
+ "tsx": "^4.22.4",
45
+ "typescript": "^6.0.3",
46
+ "typescript-eslint": "^8.62.1",
47
+ "vitest": "^4.1.9"
48
+ },
49
+ "scripts": {
50
+ "dev": "tsx src/cli/index.ts",
51
+ "build": "tsup",
52
+ "start": "node dist/index.js",
53
+ "typecheck": "tsc --noEmit",
54
+ "lint": "eslint .",
55
+ "lint:fix": "eslint . --fix",
56
+ "format": "prettier --write .",
57
+ "format:check": "prettier --check .",
58
+ "test": "vitest run",
59
+ "test:watch": "vitest",
60
+ "test:coverage": "vitest run --coverage",
61
+ "check": "pnpm run typecheck && pnpm run lint && pnpm run format:check && pnpm run test"
62
+ }
63
+ }