-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.37 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.37 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
{
"name": "mxcn",
"version": "2.0.0",
"description": "Utility function to use both `clsx` and `tailwind-merge` in one go. Where class merging becomes a seamless dance, leaving style conflicts in the dust!",
"license": "MIT",
"repository": "ahmadawais/mxcn",
"author": {
"name": "Ahmad Awais",
"email": "me@AhmadAwais.com",
"url": "https://twitter.com/MrAhmadAwais"
},
"files": [
"dist",
"*.d.ts"
],
"keywords": [
"mxcn",
"tailwind-merge",
"clsx",
"classnames",
"classname",
"tailwind",
"Ahmad Awais",
"ahmadawais"
],
"devDependencies": {
"prettier": "^3.0.0",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
},
"dependencies": {
"clsx": "^2.0.0",
"tailwind-merge": "^1.14.0"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"unpkg": "./dist/index.global.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.global.js"
}
},
"engines": {
"node": ">=12"
},
"scripts": {
"dev": "npm run build -- --watch src",
"build": "tsup src/index.ts --format esm,cjs,iife --dts --sourcemap --clean --minify --shims",
"format": "prettier --write \"./**/*.{js,json}\"",
"test": "npx vitest run",
"test:watch": "npx vitest watch",
"prepublishOnly": "npm run build"
}
}