-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
31 lines (31 loc) · 977 Bytes
/
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": "omaps-url-handler",
"version": "1.0.0",
"description": "Processes specific HTTP requests to domains",
"main": "workers-site/index.js",
"scripts": {
"build": "esbuild src/index.ts --bundle --outfile=workers-site/index.js",
"test": "eslint src/**/*.ts && tsc --noEmit",
"format": "prettier --write 'src/**/*.{ts,tsx,json}' public/*.json",
"upgrade": "npx npm-check-updates -u && npm install"
},
"author": "Alexander Borsuk <[email protected]>",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^4.20240729.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"esbuild": "^0.23.0",
"eslint": "^9.8.0",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"wrangler": "^3.68.0"
},
"dependencies": {
"@cloudflare/kv-asset-handler": "^0.3.4"
}
}