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