-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.03 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.03 KB
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
32
33
34
{
"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",
"lint": "eslint src/**/*.ts && tsc --noEmit",
"test": "jest",
"format": "prettier --write 'src/**/*.{ts,tsx,json}' public/*.json",
"upgrade": "npx npm-check-updates -u && npm install"
},
"author": "Alexander Borsuk <me@alex.bio>",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^4.20250913.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.35.0",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"esbuild": "^0.25.9",
"eslint": "^9.35.0",
"globals": "^16.4.0",
"jest": "^30.1.3",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"wrangler": "^4.37.0"
},
"dependencies": {
"@cloudflare/kv-asset-handler": "^0.4.0"
}
}