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
|
{
"name": "tailwindcss-claude-config",
"version": "1.0.0",
"description": "Comprehensive Claude Code configuration for Tailwind CSS development",
"keywords": [
"tailwindcss",
"tailwind",
"claude-code",
"css",
"utility-first",
"responsive-design"
],
"author": "Matt Dionis <matt@nlad.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Matt-Dionis/claude-code-configs.git"
},
"engines": {
"node": ">=18.0.0"
},
"claude-config": {
"version": "1.0.0",
"compatible": {
"claude-code": ">=1.0.0",
"tailwindcss": ">=3.4.0"
},
"features": {
"agents": 5,
"commands": 3,
"hooks": 2,
"patterns": [
"responsive-design",
"dark-mode",
"custom-utilities",
"component-variants"
]
}
},
"scripts": {
"validate": "node -e \"console.log('✅ Configuration is valid')\"",
"info": "node -e \"console.log(JSON.stringify(require('./package.json')['claude-config'], null, 2))\""
},
"dependencies": {},
"devDependencies": {},
"peerDependencies": {
"tailwindcss": ">=3.4.0",
"postcss": ">=8.0.0",
"autoprefixer": ">=10.0.0"
},
"peerDependenciesMeta": {
"tailwindcss": {
"optional": false
},
"postcss": {
"optional": false
},
"autoprefixer": {
"optional": false
}
}
}
|