-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.76 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.76 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
{
"name": "@artusdev/tailwind-underlines",
"version": "1.0.0",
"description": "A Tailwind CSS v4 plugin that adds advanced and animated underline utilities for flexible text decoration control.",
"files": [
"dist"
],
"style": "dist/index.css",
"scripts": {
"publish": "npm publish --access public",
"lint": "npm run lint:css && npm run lint:js && npm run lint:md",
"lint:css": "stylelint \"**/*.css\"",
"lint:js": "eslint .",
"lint:md": "markdownlint-cli2 \"**/*.md\" \"#node_modules\"",
"lint:fix": "npm run lint:css -- --fix && npm run lint:js -- --fix && npm run lint:md -- --fix",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepare": "husky"
},
"keywords": [
"tailwindcss",
"tailwind",
"underline",
"text-decoration",
"plugin",
"animation",
"css",
"utilities"
],
"repository": {
"type": "git",
"url": "https://github.com/ArtusLama/tailwind-underlines.git"
},
"author": "Arthur Paucke",
"license": "MIT",
"lint-staged": {
"*.css": "npm run lint:css",
"*.{js,mjs,cjs,ts,mts,cts}": "npm run lint:js",
"*.md": "npm run lint:md"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin": "^5.6.1",
"@stylistic/stylelint-plugin": "^4.0.0",
"@tailwindcss/vite": "^4.1.18",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"markdownlint-cli2": "^0.20.0",
"markdownlint-cli2-formatter-pretty": "^0.0.9",
"stylelint": "^16.26.1",
"stylelint-config-standard": "^39.0.1",
"stylelint-config-tailwindcss": "^1.0.0",
"tailwindcss": "^4.1.18",
"typescript-eslint": "^8.50.0",
"vitepress": "^2.0.0-alpha.15"
}
}