-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 1.96 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
84
85
86
87
88
89
{
"name": "@projectwallace/css-analyzer",
"version": "9.9.3",
"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"
}
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"lint": "oxlint --config .oxlintrc.json; oxfmt --check",
"test": "vitest --coverage",
"check": "tsc --noEmit",
"build": "tsdown",
"knip": "knip"
},
"dependencies": {
"@projectwallace/css-parser": "~0.18.1"
},
"devDependencies": {
"@projectwallace/preset-oxlint": "^0.0.11",
"@vitest/coverage-v8": "^5.0.0",
"knip": "^6.31.0",
"oxfmt": "^0.66.0",
"oxlint": "^1.75.0",
"publint": "^0.3.22",
"tsdown": "^0.23.0",
"typescript": "^7.0.2",
"vite": "^8.2.0",
"vitest": "^5.0.0"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=11.0.0"
},
"packageManager": "pnpm@11.1.1"
}