-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.28 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.28 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
{
"name": "@trigen/stylelint-config",
"type": "module",
"version": "8.0.0",
"description": "Trigen's Stylelint config.",
"author": "dangreen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TrigenSoftware/scripts.git",
"directory": "packages/stylelint-config"
},
"bugs": {
"url": "https://github.com/TrigenSoftware/scripts/issues"
},
"keywords": [
"stylelint",
"stylelint-config",
"css",
"scss"
],
"engines": {
"node": ">=20"
},
"exports": {
".": "./src/index.js",
"./*": "./src/*.js"
},
"publishConfig": {
"access": "public",
"directory": "package",
"linkDirectory": false
},
"scripts": {
"prepublishOnly": "del ./package && clean-publish",
"postpublish": "del ./package"
},
"peerDependencies": {
"stylelint": ">=12.0.0"
},
"dependencies": {
"@stylistic/stylelint-plugin": "^5.0.0",
"postcss-scss": "^4.0.9",
"stylelint-declaration-strict-value": "^1.1.3",
"stylelint-gamut": "^1.3.4",
"stylelint-high-performance-animation": "^1.5.1",
"stylelint-order": "^7.0.0",
"stylelint-plugin-a11y": "^1.0.1",
"stylelint-plugin-logical-css": "^1.2.3",
"stylelint-scss": "^6.12.1"
},
"devDependencies": {
"stylelint": "^16.21.1"
}
}