-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.25 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.25 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
{
"name": "ff-diff",
"version": "0.2.19",
"description": "Compare changes in user preference files between two versions of Firefox",
"keywords": [
"diff",
"firefox",
"user.js",
"user:config",
"user_pref",
"versions"
],
"license": "MIT",
"author": "martabal",
"repository": {
"type": "git",
"url": "git+https://github.com/martabal/ff-diff.git"
},
"bin": {
"ff-diff": "./dist/index.js"
},
"files": [
"dist/"
],
"type": "module",
"scripts": {
"build": "vite build",
"build:prod": "vite build --minify",
"check:typescript": "tsc --noEmit",
"check:all": "pnpm run generate:shell-completion && pnpm run check:typescript && pnpm run test:all && pnpm run format && pnpm run lint && pnpm run typos",
"ff-diff": "vite build -l warn && USE_CURRENT_DIR=true node dist/index.js",
"format": "oxfmt --check",
"format:fix": "oxfmt",
"generate:shell-completion": "COMPLETION=true vite build && node dist/shell-completion.js --path ./completions",
"generate:usage": "USAGE=true vite build && node dist/usage.js",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix --fix-suggestions",
"release": "git-cliff -l | wl-copy",
"test": "vitest --run --exclude '**/*.end-to-end.test.ts'",
"test:all": "pnpm run build && vitest --run",
"test:end-to-end": "pnpm run build && vitest end-to-end --run",
"test:cov": "pnpm run build && vitest --coverage",
"test:watch": "pnpm run build && vitest",
"typos": "typos .",
"update": "pnpm up --latest && pnpm run update:corepack && pnpm update",
"update:corepack": "corepack use pnpm@latest"
},
"dependencies": {
"selenium-webdriver": "4.41.0"
},
"devDependencies": {
"@types/node": "25.3.0",
"@types/selenium-webdriver": "4.35.5",
"@vitest/coverage-v8": "4.0.18",
"oxfmt": "0.35.0",
"oxlint": "1.50.0",
"oxlint-tsgolint": "0.15.0",
"typescript": "5.9.3",
"vite": "8.0.0-beta.15",
"vitest": "4.0.18"
},
"engines": {
"node": ">=20.12.0 <21 || >=21.7.0 <22 || >=22.13.0 <23 || >=23.5.0"
},
"packageManager": "pnpm@10.30.2+sha512.36cdc707e7b7940a988c9c1ecf88d084f8514b5c3f085f53a2e244c2921d3b2545bc20dd4ebe1fc245feec463bb298aecea7a63ed1f7680b877dc6379d8d0cb4"
}