-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.72 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.72 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
68
69
70
71
72
73
74
75
76
77
{
"name": "@projectwallace/css-code-coverage",
"version": "1.0.1",
"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",
"bugs": "https://github.com/projectwallace/css-code-coverage/issues",
"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"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"test": "c8 --reporter=text --reporter=lcov playwright test",
"build": "tsdown",
"check": "tsc --noEmit",
"lint": "oxlint --config .oxlintrc.json; oxfmt --check",
"knip": "knip"
},
"dependencies": {
"@projectwallace/css-parser": "~0.15.0",
"@projectwallace/format-css": "^3.0.2"
},
"devDependencies": {
"@codecov/vite-plugin": "^2.0.1",
"@playwright/test": "^1.59.1",
"@projectwallace/preset-oxlint": "^0.0.11",
"@types/node": "^25.5.2",
"c8": "^11.0.0",
"knip": "^6.3.0",
"oxfmt": "^0.49.0",
"oxlint": "^1.58.0",
"publint": "^0.3.20",
"tsdown": "^0.22.0",
"typescript": "^6.0.2"
},
"overrides": {
"@projectwallace/css-parser": "$@projectwallace/css-parser"
},
"engines": {
"node": ">=20",
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@11.1.1",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}