-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.07 KB
/
package.json
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
{
"name": "@projectwallace/stylelint-plugin",
"version": "0.0.0",
"description": "A stylelint plugin that checks the complexity of your CSS.",
"homepage": "https://github.com/projectwallace/stylelint-plugin",
"issues": "https://github.com/projectwallace/stylelint-plugin/issues",
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"source": "./src/index.js",
"main": "dist/index.cjs",
"module": "dist/index.module.mjs",
"exports": {
"default": "./dist/index.modern.mjs",
"require": "./dist/index.cjs"
},
"scripts": {
"test": "uvu",
"lint": "oxlint -D perf -D style",
"build": "microbundle --format esm,modern,cjs --target node --compress"
},
"keywords": [
"stylelint-plugin",
"stylelint",
"css",
"complexity",
"wallace",
"lint"
],
"dependencies": {
"@bramus/specificity": "^2.3.0",
"css-tree": "^2.3.1"
},
"devDependencies": {
"microbundle": "^0.15.1",
"oxlint": "^0.0.22",
"stylelint": "^16.0.0",
"uvu": "^0.5.6"
},
"peerDependencies": {
"stylelint": "^16.0.0"
}
}