This repository was archived by the owner on Apr 27, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.52 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.52 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
76
77
78
79
80
81
82
83
{
"name": "eleganceui-tailwind-utilities",
"version": "5.0.0",
"main": "dist/index.cjs.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"homepage": "https://github.com/EleganceUI/eleganceui-tailwindcss-utilities#readme",
"bugs": {
"url": "https://github.com/EleganceUI/eleganceui-tailwindcss-utilities/issues"
},
"license": "MIT",
"author": "Éverton Toffanetto",
"contributors": [
{
"name": "Wygor Fonseca",
"email": "contato@wygor.dev.br",
"url": "https://github.com/WygorFonseca"
},
{
"name": "Éverton Toffanetto",
"email": "contato@querocriarsite.com",
"url": "https://github.com/everton-dgn"
}
],
"description": "This component is a set of utility classes to simplify and expand TailwindCSS classes.",
"keywords": [
"class",
"css",
"utilitie",
"tailwindcss",
"eleganceui",
"kit ui"
],
"repository": {
"type": "git",
"url": "git+https://github.com/EleganceUI/eleganceui-tailwindcss-utilities.git"
},
"scripts": {
"build": "vite build && tsc",
"lint": "eslint --cache src --ext ts,json --max-warnings=0",
"lint:fix": "eslint --cache --fix src --ext ts,json",
"format": "prettier --cache --write src",
"check:format": "prettier --cache --check src",
"typecheck": "tsc",
"check:update": "yarn upgrade-interactive --latest",
"npm:publish": "npm publish"
},
"type": "module",
"devDependencies": {
"@commitlint/cli": "^19.1.0",
"@commitlint/config-conventional": "^19.1.0",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.2",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/node": "20.11.26",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "16.3.1",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-sonarjs": "^0.23.0",
"prettier": "^3.2.4",
"semantic-release": "^23.0.5",
"tailwindcss": "^3.4.1",
"typescript": "5.4.2",
"vite": "^5.1.6",
"vite-tsconfig-paths": "^4.3.1"
},
"peerDependencies": {
"tailwindcss": ">=3.0.0"
}
}