forked from stormwarning/stylelint-config-recess-order
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.3 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.3 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
{
"name": "@perplex-digital/stylelint-config",
"version": "17.4.0",
"description": "Order and Concentric-based property sorting for Stylelint.",
"keywords": [
"tailwind",
"logical properties",
"properties-order",
"property order",
"concentric",
"stylelint",
"stylelint-config",
"stylelint-order"
],
"homepage": "https://github.com/PerplexDigital/stylelint-config",
"bugs": "https://github.com/PerplexDigital/stylelint-config/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/PerplexDigital/stylelint-config.git"
},
"license": "ISC",
"author": "Tobias Boekwijt (https://perplex.nl/en/about-perplex/the-perplexers#tobias-boekwijt)",
"type": "module",
"exports": {
".": "./src/index.js",
"./order": "./src/order.js",
"./property-groups": "./src/property-groups.js"
},
"main": "src/index.js",
"files": [
"src/index.js",
"src/order.js",
"src/property-groups.js"
],
"scripts": {
"lint": "eslint '**/*.js'",
"fix": "eslint '**/*.js' --fix",
"prepare": "husky",
"release": "changeset publish",
"test": "node --test"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"package.json": "prettier --write"
},
"dependencies": {
"@dreamsicle.io/stylelint-config-tailwindcss": "^1.2.2",
"@stylistic/stylelint-plugin": "^5.0.1",
"stylelint-config-recommended-vue": "^1.6.1",
"stylelint-config-standard": "^40.0.0",
"stylelint-high-performance-animation": "^2.0.0",
"stylelint-order": "^8.1.1",
"stylelint-use-logical": "^2.1.3"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@nuxt/eslint-config": "^1.15.2",
"@zazen/changesets-changelog": "^2.0.4",
"eslint": "^10.0.3",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"stylelint": "^17.5.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"stylelint": ">=17.0.0",
"stylelint-order": "^8.0.0"
}
}