-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.4 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.4 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "url-sanitize",
"version": "0.0.0",
"private": true,
"description": "Remove tracking parameters and unwrap tracking redirects from URLs with ClearURLs, AdGuard, Brave, and Firefox rules.",
"type": "module",
"packageManager": "pnpm@11.5.0",
"engines": {
"node": ">=22.13"
},
"scripts": {
"build": "pnpm -r --filter './packages/*' run build",
"test": "vitest run",
"smoke": "bash scripts/smoke.sh",
"verify:release": "node scripts/verify-release.mjs",
"test:watch": "vitest",
"typecheck": "pnpm -r --filter './packages/*' exec tsc --noEmit",
"lint": "biome check .",
"format": "biome format --write .",
"sync:clearurls": "tsx sources/clearurls/sync.ts",
"sync:adguard": "tsx sources/adguard/sync.ts",
"sync:brave": "tsx sources/brave/sync.ts",
"sync:firefox": "tsx sources/firefox/sync.ts",
"sync:sources": "pnpm sync:clearurls && pnpm sync:adguard && pnpm sync:brave && pnpm sync:firefox",
"build:catalog": "tsx scripts/build-catalog.ts",
"build:conformance": "tsx scripts/build-conformance.ts",
"benchmark": "tsx scripts/benchmark.ts",
"changeset": "changeset",
"release": "pnpm build && changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@changesets/cli": "^2.31.0",
"ajv": "8.17.1",
"@types/node": "^25.9.1",
"@url-sanitize/adguard": "workspace:*",
"@url-sanitize/brave": "workspace:*",
"@url-sanitize/clearurls": "workspace:*",
"@url-sanitize/core": "workspace:*",
"@url-sanitize/firefox": "workspace:*",
"@url-sanitize/merged": "workspace:*",
"husky": "^9.1.7",
"tsup": "^8.5.1",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"vite": "^8.0.14",
"vitest": "^4.1.7"
},
"license": "MIT",
"author": "Antonio Orionus",
"repository": {
"type": "git",
"url": "https://github.com/antonio-orionus/url-sanitize.git"
},
"bugs": "https://github.com/antonio-orionus/url-sanitize/issues",
"homepage": "https://github.com/antonio-orionus/url-sanitize#readme",
"keywords": [
"url",
"sanitize",
"sanitizer",
"clearurls",
"clearurls-ts",
"clearurls-typescript",
"adguard",
"brave",
"firefox",
"tracking",
"tracking-parameters",
"utm",
"redirect",
"privacy",
"url-cleaner",
"typescript",
"rust",
"cli",
"crates-io",
"pypi",
"github-actions"
]
}