-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.07 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
{
"name": "sprachverstand",
"version": "0.6.6",
"private": true,
"description": "Macht Webseiten leichter lesbar.",
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"clean": "node scripts/build.mjs --clean",
"build": "node scripts/build.mjs",
"build:chromium": "node scripts/build.mjs --target chromium",
"build:firefox": "node scripts/build.mjs --target firefox",
"dev": "node scripts/build.mjs --target chromium --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"check": "npm run audit:public && npm run typecheck && npm run test && npm run build && npm run validate:icons && npm run lint:firefox",
"lint:firefox": "web-ext lint --source-dir dist/firefox --warnings-as-errors",
"validate:icons": "node scripts/validate-icons.mjs",
"audit:public": "node scripts/audit-publication.mjs"
},
"devDependencies": {
"esbuild": "0.28.1",
"jsdom": "30.0.1",
"typescript": "7.0.2",
"vitest": "4.1.10",
"web-ext": "10.6.0"
},
"license": "AGPL-3.0-only"
}