-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "stylelint-config-pretty-order",
"version": "0.7.0",
"description": "Prettify CSS property order",
"author": "Tsuyoshi Yamaguchi",
"license": "MIT",
"repository": "[email protected]:Tsuyoshi84/stylelint-config-pretty-order.git",
"keywords": [
"stylelint",
"stylelint-config",
"stylelint-order"
],
"engines": {
"node": ">=18"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"type": "module",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"lint": "biome check src",
"stylelint": "stylelint --max-warnings 0 ./test/test.css",
"format": "biome format --write src",
"format:check": "biome format src"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"rollup": "^4.22.5",
"stylelint": "^16.9.0"
},
"peerDependencies": {
"stylelint": "^15.0.0 || ^16.0.0"
},
"dependencies": {
"stylelint-order": "^6.0.4"
}
}