-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.73 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
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": "stylelint-config-elegant-coding",
"description": "⚙️ Stylelint configuration for fix errors before they cause problems in your code. It can also help you to develop good coding habits that will make your code easier to maintain in the long run.",
"author": "Luis Monsalve <TheElegantCoding>",
"version": "6.1.0",
"keywords":
[
"clean-architecture",
"clean-code",
"performance",
"style-guide",
"design-system",
"typescript",
"node",
"stylelint-rules",
"eslint",
"stylelint",
"pnpm"
],
"type": "module",
"exports":
{
".":
{
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./sass":
{
"types": "./dist/sass.d.ts",
"import": "./dist/sass.mjs",
"require": "./dist/sass.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [ "./dist" ],
"engines":
{
"node": ">=18.12.0",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": ">=8.2.0"
},
"scripts":
{
"preinstall": "npx only-allow bun",
"build": "tsup --format esm,cjs --clean --dts",
"dev": "tsup src/index.ts --format esm,cjs --watch",
"type-check": "tsc --pretty --noEmit",
"lint": "pnpm lint-eslint",
"lint-eslint": "eslint . --fix "
},
"peerDependencies":
{
"stylelint": ">=16.10.0"
},
"dependencies":
{
"@stylistic/stylelint-plugin": "3.1.1",
"postcss": "8.4.49",
"postcss-scss": "4.0.9",
"stylelint-order": "6.0.4",
"stylelint-scss": "6.10.0"
},
"devDependencies":
{
"eslint": "9.15.0",
"eslint-config-elegant-coding": "9.8.2",
"rimraf": "6.0.1",
"stylelint": "16.10.0",
"tsup": "8.3.5"
}
}