-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.04 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
35
36
{
"name": "matomo-tracker-worker",
"version": "0.1.0",
"description": "Cloudflare Worker to proxy origin requests and send hits to Matomo",
"license": "BSD-3-Clause",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format:check": "prettier --check .",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"build": "esbuild src/index.ts --bundle --platform=neutral --target=es2022 --format=esm --outdir=dist --conditions=worker"
},
"engines": {
"node": ">=24"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitest/coverage-v8": "^4.0.14",
"esbuild": "^0.27.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.5.0",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^4.0.14"
}
}