From d4cf59999145949128f4dc24816bdaaa3980d55f Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Mon, 13 Oct 2025 05:27:58 -0700 Subject: [PATCH] Feat: Add initial project dependencies --- package.json | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 8b13789..3ce1cb5 100644 --- a/package.json +++ b/package.json @@ -1 +1,19 @@ - +{ + "name": "llm-benchmark", + "version": "1.0.0", + "description": "An automated benchmark for LLM coding abilities.", + "main": "scripts/run-benchmark.js", + "scripts": { + "start": "node scripts/run-benchmark.js" + }, + "keywords": [ + "llm", + "benchmark", + "ai" + ], + "author": "Master", + "license": "MIT", + "dependencies": { + "axios": "^1.6.8" + } +}