-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.05 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
{
"name": "classfix",
"version": "1.0.2",
"description": "Transform a string object into a clean string to make the className more orderly.",
"main": "dist/main.js",
"module": "dist/main.mjs",
"types": "dist/main.d.ts",
"scripts": {
"build": "tsup",
"format": "prettier ./ --write",
"lint": "eslint ./ --max-warnings=0"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/main.d.ts",
"require": "./dist/main.js",
"import": "./dist/main.mjs"
},
"./package.json": "./package.json"
},
"keywords": [
"classfix",
"class",
"classes",
"classname",
"classnames",
"clsx",
"tailwind",
"css"
],
"author": "CarmeloCampos",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"repository": "https://github.com/CarmeloCampos/classfix"
}