-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 836 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "benix-cli",
"version": "1.0.0",
"description": "Benix VPS Benchmark CLI - One Command. Full Insights.",
"type": "module",
"main": "src/index.ts",
"bin": {
"benix": "./dist/benix"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --compile --outfile dist/benix --target bun-linux-x64",
"build:all": "bun run build:linux && bun run build:mac",
"build:linux": "bun build src/index.ts --compile --outfile dist/benix-linux-x64 --target bun-linux-x64",
"build:mac": "bun build src/index.ts --compile --outfile dist/benix-darwin-x64 --target bun-darwin-x64"
},
"keywords": ["vps", "benchmark", "server", "performance", "speedtest"],
"author": "Benix",
"license": "MIT",
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.0.0"
}
}