chore(bench): init benchmark repo

This commit is contained in:
Fanis Tharropoulos 2024-12-30 10:37:15 +02:00
parent a8b7e93990
commit f2df252b1b
No known key found for this signature in database
2 changed files with 48 additions and 0 deletions

16
benchmark/package-lock.json generated Normal file
View File

@ -0,0 +1,16 @@
{
"name": "typesense-benchmark-cli",
"version": "0.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "typesense-benchmark-cli",
"version": "0.0.0",
"license": "GPL",
"bin": {
"typesense-benchmark": "dist/index.js"
}
}
}
}

32
benchmark/package.json Normal file
View File

@ -0,0 +1,32 @@
{
"name": "typesense-benchmark-cli",
"version": "0.0.0",
"description": "Benchmarking tool for Typesense",
"type": "module",
"main": "index.js",
"bin": {
"typesense-benchmark": "./dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"full-text search",
"search engine",
"typesense",
"benchmark"
],
"author": {
"name": "Typesense, Inc.",
"email": "contact@typesense.org",
"url": "https://typesense.org"
},
"contributors": [
{
"name": "Fanis Tharropoulos",
"email": "fanis@typesense.org",
"url": "https://github.com/tharropoulos"
}
],
"license": "GPL"
}