-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
125 lines (125 loc) · 3.76 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"version": "1.8.2",
"type": "module",
"name": "eslint-plugin-readable-tailwind",
"description": "auto-wraps tailwind classes after a certain print width or class count into multiple lines to improve readability.",
"license": "MIT",
"author": "Roger Schönbächler",
"repository": {
"type": "git",
"url": "git+https://github.com/schoero/eslint-plugin-readable-tailwind.git"
},
"bugs": {
"url": "https://github.com/schoero/eslint-plugin-readable-tailwind/issues"
},
"exports": {
".": {
"import": "./lib/esm/configs/esm.js",
"require": "./lib/cjs/configs/cjs.js"
},
"./api/defaults": {
"import": "./lib/esm/api/defaults.js",
"require": "./lib/cjs/api/defaults.js"
},
"./api/types": {
"import": "./lib/esm/api/types.js",
"require": "./lib/cjs/api/types.js"
}
},
"main": "./lib/cjs/configs/cjs.js",
"scripts": {
"build": "vite-node build",
"eslint": "node_modules/eslint/bin/eslint.js .",
"eslint:ci": "npm run eslint -- --max-warnings 0",
"eslint:fix": "npm run eslint -- --fix",
"lint": "npm run eslint && npm run markdownlint",
"lint:ci": "npm run eslint:ci && npm run markdownlint:ci",
"lint:fix": "npm run eslint:fix && npm run markdownlint:fix",
"markdownlint": "markdownlint-cli2 '**/*.md' '#**/node_modules'",
"markdownlint:ci": "npm run markdownlint",
"markdownlint:fix": "npm run markdownlint -- --fix",
"postrelease:alpha": "npm run postrelease",
"postrelease:beta": "npm run postrelease",
"postrelease:latest": "eslint --fix package.json && markdownlint-cli2 --fix 'CHANGELOG.md'",
"prebuild": "npm run typecheck && npm run lint && npm run spellcheck",
"prerelease:alpha": "npm run test -- --run && npm run build",
"prerelease:beta": "npm run test -- --run && npm run build",
"prerelease:latest": "npm run test -- --run && npm run build",
"publish:alpha": "npm run publish:latest -- --publishTag alpha",
"publish:beta": "npm run publish:latest -- --publishTag beta",
"publish:latest": "changelogen gh release && changelogen --publish",
"release:alpha": "npm run release -- --prerelease alpha",
"release:beta": "npm run release -- --prerelease beta",
"release:latest": "changelogen --bump --output --no-tag",
"spellcheck": "cspell lint",
"spellcheck:ci": "npm run spellcheck -- --no-progress",
"test": "vitest -c ./vite.config.ts",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=16"
},
"files": [
"lib"
],
"peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0 || ^9.0.0",
"tailwindcss": ">=3.3.0"
},
"devDependencies": {
"@html-eslint/parser": "^0.27.0",
"@schoero/configs": "^1.1.8",
"@types/estree-jsx": "^1.0.5",
"@types/node": "^22.9.0",
"@typescript-eslint/parser": "^8.13.0",
"changelogen": "^0.5.7",
"cspell": "^8.16.0",
"es-html-parser": "^0.0.9",
"eslint": "^9.14.0",
"eslint-plugin-eslint-plugin": "^6.3.1",
"glob": "^11.0.0",
"json-schema": "^0.4.0",
"markdownlint": "^0.35.0",
"proper-tags": "^2.0.2",
"svelte": "^5.1.12",
"svelte-eslint-parser": "^0.43.0",
"tailwindcss": "^3.4.14",
"tsc-alias": "^1.8.10",
"typescript": "^5.6.3",
"vite-node": "^2.1.4",
"vitest": "^2.1.4",
"vue-eslint-parser": "^9.4.3"
},
"keywords": [
"eslint",
"eslint-plugin",
"tailwind",
"readable",
"horizontal",
"scrolling",
"multiline",
"multi",
"newline",
"line",
"break",
"linebreak",
"wrap",
"template",
"literal",
"jsx",
"html",
"svelte",
"vue",
"react",
"qwik",
"solid",
"template-literal",
"template-literals",
"tailwindcss",
"tailwind-css",
"tailwind-classes"
],
"volta": {
"node": "22.5.1"
}
}