-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 4.46 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 4.46 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "aicharts",
"version": "1.0.0",
"description": "Open-source AI benchmark charts for comparing models and agents across performance, cost, speed, and token use.",
"private": true,
"type": "module",
"license": "MIT",
"homepage": "https://aicharts.io",
"repository": {
"type": "git",
"url": "https://github.com/hraness/aicharts.git"
},
"bugs": {
"url": "https://github.com/hraness/aicharts/issues"
},
"keywords": [
"ai",
"ai-agents",
"ai-benchmark",
"ai-model-comparison",
"ai-models",
"benchmark",
"benchmark-visualization",
"coding-agents",
"data-visualization",
"llm",
"llm-benchmark",
"llm-comparison",
"machine-learning"
],
"packageManager": "bun@1.3.14",
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint .",
"test": "bun test .",
"test:browser": "bun run ./scripts/model-card-browser.ts",
"test:property": "bun test ./lib/*.property.test.ts",
"typecheck": "tsc --noEmit",
"colors:generate": "bun run scripts/generate-chart-colors.ts",
"colors:check": "bun run scripts/generate-chart-colors.ts --check",
"model-icons:generate": "bun run scripts/generate-model-card-icons.ts",
"model-icons:check": "bun run scripts/generate-model-card-icons.ts --check",
"data:refresh": "bun run scripts/refresh-coding-agents.ts",
"data:check": "bun run scripts/refresh-coding-agents.ts --check",
"aa-intelligence:refresh": "bun run scripts/refresh-artificial-analysis-intelligence.ts",
"aa-intelligence:check": "bun run scripts/refresh-artificial-analysis-intelligence.ts --check",
"deepswe:refresh": "bun run scripts/refresh-deep-swe-evidence.ts",
"deepswe:check": "bun run scripts/refresh-deep-swe-evidence.ts --check",
"terminal-bench:refresh": "bun run scripts/refresh-terminal-bench.ts",
"terminal-bench:check": "bun run scripts/refresh-terminal-bench.ts --check",
"terminal-bench-science:refresh": "bun run scripts/refresh-terminal-bench-science.ts",
"terminal-bench-science:check": "bun run scripts/refresh-terminal-bench-science.ts --check",
"releases:refresh": "bun run scripts/refresh-model-releases.ts",
"releases:reconcile": "bun run scripts/refresh-model-releases.ts --reconcile",
"releases:check": "bun run scripts/refresh-model-releases.ts --check",
"first-party-releases:refresh": "bun run scripts/refresh-first-party-releases.ts",
"first-party-releases:check": "bun run scripts/refresh-first-party-releases.ts --check",
"release-dates:check": "bun run scripts/check-model-release-dates.ts",
"check:generated": "bun run colors:check && bun run model-icons:check && bun run data:check && bun run aa-intelligence:check && bun run releases:check && bun run first-party-releases:check && bun run release-dates:check && bun run deepswe:check && bun run terminal-bench:check && bun run terminal-bench-science:check",
"check": "bun run check:generated && bun run typecheck && bun run lint && bun run test && bun run build && bun run test:browser",
"kb:refresh": "bunx --bun github:hraness/kb#v0.15.2 refresh --root kb",
"kb:check:lane": "bunx --bun github:hraness/kb#v0.15.2 check --root kb --no-catalog",
"kb:check": "bunx --bun github:hraness/kb#v0.15.2 check --root kb && bunx --bun github:hraness/kb#v0.15.2 agents check --root kb --repo .",
"kb:catalog": "bunx --bun github:hraness/kb#v0.15.2 catalog --root kb"
},
"dependencies": {
"@hraness/design-kit": "github:hraness/design-kit#v0.4.0",
"@hraness/site-footer": "github:hraness/site-footer#v0.4.6",
"@hraness/ui": "github:hraness/ui#v0.4.10",
"@hraness/vercel-delivery": "github:hraness/vercel-delivery#v0.1.2",
"@hraness/web-discovery": "github:hraness/web-discovery#v0.2.0",
"@hugeicons/core-free-icons": "^4.3.0",
"@hugeicons/react": "^1.1.10",
"@lobehub/icons-static-svg": "1.94.0",
"@posthog/nextjs-config": "1.10.0",
"next": "16.3.3",
"posthog-js": "1.422.5",
"posthog-node": "5.51.4",
"react": "19.2.8",
"react-dom": "19.2.8",
"zod": "^4.5.4"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/node": "^24.10.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.5",
"eslint": "^9.39.2",
"eslint-config-next": "16.3.3",
"fast-check": "^4.8.0",
"iwanthue": "2.1.0",
"playwright-core": "1.62.1",
"typescript": "^6.0.3",
"yaml": "2.9.0"
}
}