-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.22 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
{
"name": "darkmoon",
"version": "1.0.0",
"private": true,
"description": "Darkmoon — an adaptive CSS-filter dark theme extension for Chrome (Manifest V3)",
"license": "MIT",
"packageManager": "yarn@1.22.22",
"type": "module",
"scripts": {
"dev": "node scripts/build.mjs --watch",
"dev:mocks": "vite --mode mock --open /src/popup/index.html",
"build": "node scripts/build.mjs",
"icons": "node scripts/generate-icons.mjs",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"capture": "tsx playwright/capture.ts",
"verify": "yarn typecheck && yarn lint && yarn test && yarn build"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/chrome": "^0.0.287",
"@types/node": "^22.10.2",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"playwright": "^1.49.1",
"prettier": "^3.4.2",
"sharp": "^0.33.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.7",
"vitest": "^2.1.8"
}
}