-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 892 Bytes
/
package.json
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
{
"name": "@neupauer/tailwindcss-plugin-colors",
"version": "1.0.1",
"description": "A Tailwind CSS plugin for extracting theme colors as global variables.",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/neupauer/tailwindcss-plugin-colors"
},
"keywords": [
"tailwindcss",
"plugin",
"colors",
"comma"
],
"author": {
"name": "Peter Neupauer",
"url": "https://neupauer.sk"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublishOnly": "node scripts/build.js"
},
"peerDependencies": {
"tailwindcss": "^2.0.0 || ^3.0.0"
},
"dependencies": {
"flat": "^5.0.2"
},
"devDependencies": {
"autoprefixer": "^10.2.0",
"clean-css": "^4.2.1",
"postcss": "^8.2.2",
"tailwindcss": "^2.0.2"
},
"prettier": {
"printWidth": 120
}
}