-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.72 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
61
62
63
64
65
66
67
68
{
"name": "codex-wrapped",
"version": "0.0.1",
"description": "Local usage analytics and statistics dashboard for OpenAI Codex",
"license": "MIT",
"keywords": [
"ai",
"wrapped",
"codex",
"stats",
"dashboard"
],
"bin": {
"codex-wrapped": "bin/cli.ts"
},
"files": [
"bin/",
"src/bun/",
"src/shared/",
"!src/**/*.test.ts",
"!src/shared/components/",
"!src/shared/lib/",
"dist/",
"tsconfig.json",
"README.md",
"AGENTS.md",
"ThirdPartyNotices.txt"
],
"scripts": {
"prepare": "git config core.hooksPath .githooks || true",
"dev": "bun run build && bun --hot ./src/bun/index.ts",
"dev:hmr": "concurrently \"vite --port 5173\" \"VITE_DEV_SERVER_URL=http://127.0.0.1:5173 bun --hot ./src/bun/index.ts\"",
"build": "vite build",
"prepack": "bun run build",
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
"lint": "oxlint --quiet src bin scripts",
"format": "biome format --write .",
"format:check": "bun ./scripts/git-hooks/format-check.ts",
"check:precommit": "bun ./scripts/git-hooks/precommit.ts",
"check:prepush": "bun ./scripts/git-hooks/prepush.ts",
"clean": "rm -rf dist"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@lisse/react": "^0.4.0",
"clsx": "^2.1.1",
"html-to-image": "^1.11.13",
"lucide-react": "^1.7.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@tailwindcss/vite": "latest",
"@types/bun": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@vitejs/plugin-react": "latest",
"concurrently": "latest",
"oxlint": "^1.58.0",
"react": "latest",
"react-dom": "latest",
"recharts": "3.8.0",
"tailwindcss": "latest",
"typescript": "latest",
"vite": "latest"
}
}