github-reporadar 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.
- package/DESIGN.md +126 -0
- package/LICENSE +21 -0
- package/README.md +212 -0
- package/bin/github-reporadar.mjs +11 -0
- package/dist/assets/index-7rO9STC2.js +73 -0
- package/dist/assets/index-B5UAXuco.css +1 -0
- package/dist/index.html +25 -0
- package/dist-cli/cli.js +655 -0
- package/package.json +69 -0
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "github-reporadar",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "自分のGitHub活動を一晩ぶん眺める計器盤。npx github-reporadarでローカルに開く",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"bin": {
|
|
7
|
+
"github-reporadar": "bin/github-reporadar.mjs"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"bin",
|
|
11
|
+
"dist",
|
|
12
|
+
"!dist/data",
|
|
13
|
+
"dist-cli",
|
|
14
|
+
"README.md",
|
|
15
|
+
"DESIGN.md"
|
|
16
|
+
],
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": ">=20.11"
|
|
19
|
+
},
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/BoxPistols/github-reporadar.git"
|
|
26
|
+
},
|
|
27
|
+
"type": "module",
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@dnd-kit/core": "^6.3.1",
|
|
30
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
31
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
32
|
+
"minisearch": "^7.2.0",
|
|
33
|
+
"react": "^19.1.0",
|
|
34
|
+
"react-dom": "^19.1.0"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@tailwindcss/vite": "^4.1.0",
|
|
38
|
+
"@testing-library/dom": "^10.4.1",
|
|
39
|
+
"@testing-library/react": "^16.3.2",
|
|
40
|
+
"@types/node": "^24.0.0",
|
|
41
|
+
"@types/react": "^19.1.0",
|
|
42
|
+
"@types/react-dom": "^19.1.0",
|
|
43
|
+
"@vitejs/plugin-react": "^4.5.0",
|
|
44
|
+
"axe-core": "^4.13.0",
|
|
45
|
+
"fake-indexeddb": "^6.2.5",
|
|
46
|
+
"happy-dom": "^20.11.1",
|
|
47
|
+
"puppeteer-core": "^25.3.0",
|
|
48
|
+
"tailwindcss": "^4.1.0",
|
|
49
|
+
"tsx": "^4.19.0",
|
|
50
|
+
"typescript": "^5.8.0",
|
|
51
|
+
"vite": "^6.3.0",
|
|
52
|
+
"vitest": "^3.1.0"
|
|
53
|
+
},
|
|
54
|
+
"scripts": {
|
|
55
|
+
"dev": "vite",
|
|
56
|
+
"build": "tsc -b && vite build",
|
|
57
|
+
"preview": "vite preview",
|
|
58
|
+
"sync": "tsx scripts/sync.ts",
|
|
59
|
+
"brief": "tsx scripts/brief.ts",
|
|
60
|
+
"test": "vitest run",
|
|
61
|
+
"e2e": "pnpm build && node e2e/persist.mjs",
|
|
62
|
+
"typecheck": "tsc -b --noEmit",
|
|
63
|
+
"verify": "vitest run && tsc -b --noEmit && vite build",
|
|
64
|
+
"design": "vite build && node scripts/design/fontsize.mjs && node scripts/design/contrast.mjs && node scripts/design/axe.mjs",
|
|
65
|
+
"design:lint": "node scripts/design/lint.mjs",
|
|
66
|
+
"build:cli": "vite build --config vite.cli.config.ts",
|
|
67
|
+
"cli": "tsx scripts/cli/main.ts"
|
|
68
|
+
}
|
|
69
|
+
}
|