31 lines
1.1 KiB
JSON
31 lines
1.1 KiB
JSON
{
|
|
"private": true,
|
|
"name": "metaserver",
|
|
"version": "1.0.0",
|
|
"description": "Returns a list of actual servers to download data",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "esbuild src/index.ts --bundle --outfile=dist/index.js",
|
|
"test": "jest",
|
|
"format": "prettier --write '{src,test}/**/*.{ts,tsx,json}' '*.json' '*.toml' '.github/**/*.yml'",
|
|
"format:ci": "prettier --check '{src,test}/**/*.{ts,tsx,json}' '*.json' '*.toml' '.github/**/*.yml'",
|
|
"upgrade": "npx npm-check-updates -u && npm install",
|
|
"logs": "npx wrangler tail --env prod --format json"
|
|
},
|
|
"author": "Alexander Borsuk <me@alex.bio>",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@cloudflare/workers-types": "^4.20241205.0",
|
|
"@types/jest": "^29.5.14",
|
|
"esbuild": "^0.24.0",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-miniflare": "^2.14.4",
|
|
"miniflare": "^3.20241205.0",
|
|
"npm-check-updates": "^17.1.11",
|
|
"prettier": "^3.4.2",
|
|
"prettier-plugin-toml": "^2.0.1",
|
|
"ts-jest": "^29.2.5",
|
|
"typescript": "^5.7.2",
|
|
"wrangler": "^3.95.0"
|
|
}
|
|
}
|