-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 1.06 KB
/
package.json
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
{
"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 <[email protected]>",
"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"
}
}