-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.65 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.65 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
{
"name": "tailwind-preset-mantine",
"version": "4.0.2",
"description": "Integrate Mantine with Tailwind CSS",
"keywords": [
"mantine",
"tailwind",
"preset"
],
"homepage": "https://github.com/songkeys/tailwind-preset-mantine#readme",
"bugs": {
"url": "https://github.com/songkeys/tailwind-preset-mantine/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/songkeys/tailwind-preset-mantine.git"
},
"license": "MIT",
"author": "Songkeys",
"type": "module",
"exports": {
".": "./src/index.css",
"./theme.css": "./src/theme.css",
"./postcss": {
"types": "./src/integrations/postcss.d.ts",
"require": "./src/integrations/postcss.cjs",
"import": "./src/integrations/postcss.js",
"default": "./src/integrations/postcss.js"
},
"./vite": {
"types": "./src/integrations/vite.d.ts",
"default": "./src/integrations/vite.js"
}
},
"main": "src/index.css",
"bin": {
"tailwind-preset-mantine": "src/cli/index.js"
},
"files": [
"src"
],
"engines": {
"node": ">=22.15.0"
},
"scripts": {
"generate": "node scripts/generate.js",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"release": "bumpp",
"test": "node --test"
},
"dependencies": {
"es-module-lexer": "^2.0.0",
"get-tsconfig": "^4.13.7",
"postcss": "^8.5.9",
"tsx": "^4.21.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@mantine/core": "^9.0.1",
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/vite": "^4.2.2",
"bumpp": "^11.0.1",
"tailwindcss": "^4.2.2",
"vite": "^8.0.8"
},
"peerDependencies": {
"@mantine/core": "^7 || ^8 || ^9",
"tailwindcss": "^4"
},
"packageManager": "pnpm@10.33.0"
}