-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.57 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.57 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
{
"name": "@projectwallace/css-code-coverage",
"version": "0.10.0",
"description": "Generate useful CSS Code Coverage report from browser-reported coverage",
"keywords": [
"code",
"coverage",
"css",
"dead",
"styles",
"testing",
"unused",
"used"
],
"homepage": "https://github.com/projectwallace/css-code-coverage",
"license": "EUPL-1.2",
"author": "Bart Veneman <bart@projectwallace.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/projectwallace/css-code-coverage.git"
},
"bin": {
"css-coverage": "dist/cli.mjs"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"scripts": {
"test": "c8 --reporter=text --reporter=lcov playwright test",
"build": "tsdown",
"check": "tsc --noEmit",
"lint": "oxlint --config .oxlintrc.json; oxfmt --check",
"lint-package": "publint",
"knip": "knip"
},
"dependencies": {
"@projectwallace/css-parser": "^0.13.8",
"@projectwallace/format-css": "^2.2.6"
},
"devDependencies": {
"@codecov/vite-plugin": "^1.9.1",
"@playwright/test": "^1.57.0",
"@projectwallace/preset-oxlint": "^0.0.7",
"@types/node": "^25.0.3",
"c8": "^11.0.0",
"knip": "^5.82.0",
"oxfmt": "^0.41.0",
"oxlint": "^1.39.0",
"publint": "^0.3.16",
"tsdown": "^0.21.2",
"typescript": "^5.9.3"
},
"overrides": {
"@projectwallace/css-parser": "$@projectwallace/css-parser"
},
"engines": {
"node": ">=20"
},
"issues": "https://github.com/projectwallace/css-code-coverage/issues"
}