-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.23 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
{
"name": "newtabtools",
"version": "2.5.0",
"private": true,
"type": "module",
"description": "A new tab page for Firefox, built around the sites you actually visit and laid out the way you want. PowerTools for your New Tab page.",
"packageManager": "pnpm@11.6.0",
"engines": {
"node": ">=24.0.0",
"pnpm": ">=11.0.0"
},
"scripts": {
"preinstall": "node scripts/check-pnpm.js",
"version": "node scripts/sync-version.mjs && git add webextension/manifest.json",
"dev": "web-ext run --source-dir webextension/",
"build": "node scripts/build.mjs",
"lint": "eslint webextension/ tests/",
"lint:webext": "web-ext lint --source-dir webextension/",
"typecheck": "tsc --noEmit",
"test:unit": "vitest run --project fast tests/unit",
"test:integration": "vitest run --project fast tests/integration",
"test:fast": "vitest run --project fast",
"test:e2e": "tests/e2e/run_esr_tests.sh",
"test:uat": "node tests/uat/_tools/runner.mjs",
"test:uat:preflight": "node tests/uat/_tools/preflight.mjs",
"test": "pnpm test:fast && pnpm test:e2e",
"verify": "pnpm lint && pnpm typecheck && pnpm lint:webext && pnpm test:fast && pnpm build",
"i18n:check": "node scripts/i18n-check.mjs",
"i18n:stale": "node scripts/i18n-stale.mjs",
"i18n:purge": "node scripts/i18n-purge.mjs",
"update-zip": "node scripts/update-zip.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/perdrizat/newtabtools.git"
},
"keywords": [],
"author": "Markus Perdrizat",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/perdrizat/newtabtools/issues"
},
"homepage": "https://github.com/perdrizat/newtabtools#readme",
"devDependencies": {
"@eslint/js": "10.0.1",
"@modelcontextprotocol/sdk": "1.29.0",
"@types/firefox-webext-browser": "143.0.0",
"@types/node": "24.13.2",
"@typescript-eslint/eslint-plugin": "8.61.0",
"@typescript-eslint/parser": "8.61.0",
"@zip.js/zip.js": "2.8.26",
"eslint": "10.5.0",
"globals": "17.6.0",
"jest-webextension-mock": "4.1.1",
"jsdom": "29.1.1",
"puppeteer-core": "25.1.0",
"selenium-webdriver": "4.44.0",
"typescript": "6.0.3",
"vitest": "4.1.8",
"web-ext": "10.4.0"
}
}