-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.83 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.83 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
78
79
80
81
82
83
{
"name": "@projectwallace/css-analyzer",
"version": "9.8.0",
"description": "The best CSS analyzer out there. Check design tokens, complexity, specificity, performance and more.",
"keywords": [
"analytics",
"code",
"colors",
"css",
"designsystem",
"fonts",
"metrics",
"performance",
"projectwallace",
"quality",
"statistics",
"stats",
"styleguide",
"stylesheet",
"wallace"
],
"homepage": "https://github.com/projectwallace/css-analyzer",
"bugs": "https://github.com/projectwallace/css-analyzer/issues",
"license": "MIT",
"author": "Bart Veneman",
"repository": {
"type": "git",
"url": "git+https://github.com/projectwallace/css-analyzer.git"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./selectors": {
"types": "./dist/selectors/index.d.ts",
"default": "./dist/selectors/index.js"
},
"./atrules": {
"types": "./dist/atrules/index.d.ts",
"default": "./dist/atrules/index.js"
},
"./values": {
"types": "./dist/values/index.d.ts",
"default": "./dist/values/index.js"
},
"./properties": {
"types": "./dist/properties/index.d.ts",
"default": "./dist/properties/index.js"
}
},
"scripts": {
"lint": "oxlint --config .oxlintrc.json; oxfmt --check",
"lint-package": "publint",
"test": "vitest --coverage",
"check": "tsc --noEmit",
"build": "tsdown",
"knip": "knip"
},
"dependencies": {
"@projectwallace/css-parser": "^0.14.8"
},
"devDependencies": {
"@codecov/rollup-plugin": "^2.0.1",
"@vitest/coverage-v8": "^4.1.2",
"knip": "^6.3.0",
"oxfmt": "^0.47.0",
"oxlint": "^1.58.0",
"publint": "^0.3.18",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"engines": {
"node": ">=18.0.0"
}
}