-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.31 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "tailwindcss-wp-global-styles",
"version": "0.2.4",
"description": "A TailwindCSS Plugin to take global styles from WordPress and convert them to TailwindCSS",
"main": "./index.js",
"types": "./index.d.ts",
"files": [
"./index.js",
"./index.d.ts",
"./utils.js"
],
"repository": "https://github.com/natac13/tailwindcss-wp-global-styles",
"keywords": [
"tailwindcss",
"wordpress",
"headless",
"css",
"postcss",
"tailwind",
"tailwindcss-plugin"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write ."
},
"author": "Sean Campbell <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"prettier": {
"printWidth": 100,
"semi": false,
"useTabs": true,
"singleQuote": true,
"overrides": [
{
"files": "*.json",
"options": {
"useTabs": false
}
}
]
},
"devDependencies": {
"@types/css": "^0.0.33",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.27",
"prettier": "^3.0.1",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6"
},
"dependencies": {
"css": "^3.0.0"
},
"peerDependencies": {
"tailwindcss": "^3.0.0 || insiders"
}
}