forked from tailwindlabs/prettier-plugin-tailwindcss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
137 lines (137 loc) · 3.97 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "prettier-plugin-nativewind",
"version": "0.2.3",
"description": "(deprecated) A Prettier plugin for sorting NativeWind CSS classes.",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist",
"postinstall.js"
],
"repository": {
"type": "git",
"url": "https://github.com/nderscore/prettier-plugin-nativewind"
},
"bugs": {
"url": "https://github.com/nderscore/prettier-plugin-nativewind/issues"
},
"scripts": {
"_pre": "rimraf dist && cpy node_modules/tailwindcss/lib/css dist/css",
"_esbuild": "node build.js",
"postinstall": "node postinstall.js",
"prebuild": "npm run _pre",
"build": "npm run _esbuild -- --minify",
"predev": "npm run _pre",
"dev": "npm run _esbuild -- --watch",
"pretest": "node scripts/install-fixture-deps.js",
"test": "jest",
"prepublishOnly": "npm run build && npm test && node scripts/copy-licenses.js",
"format": "prettier \"src/**/*.js\" \"scripts/**/*.js\" \"tests/test.js\" --write --print-width 100 --single-quote --no-semi --plugin-search-dir ./tests"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^3.7.0",
"@prettier/plugin-php": "^0.19.2",
"@prettier/plugin-pug": "^2.3.0",
"@shopify/prettier-plugin-liquid": "^1.0.3",
"@shufo/prettier-plugin-blade": "^1.8.4",
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"clear-module": "^4.1.2",
"cpy-cli": "^3.1.1",
"esbuild": "^0.14.11",
"escalade": "^3.1.1",
"import-sort-style-module": "^6.0.0",
"jest": "^27.4.7",
"jsesc": "^2.5.2",
"license-checker": "^25.0.1",
"line-column": "^1.0.2",
"object-hash": "^2.2.0",
"prettier": "^2.5.1",
"prettier-plugin-astro": "^0.7.2",
"prettier-plugin-css-order": "^1.3.0",
"prettier-plugin-import-sort": "^0.0.7",
"prettier-plugin-jsdoc": "^0.4.2",
"prettier-plugin-organize-attributes": "^0.0.5",
"prettier-plugin-organize-imports": "^3.2.1",
"prettier-plugin-style-order": "^0.2.2",
"prettier-plugin-svelte": "^2.9.0",
"prettier-plugin-twig-melody": "^0.4.6",
"recast": "^0.20.5",
"resolve-from": "^5.0.0",
"rimraf": "^3.0.2",
"svelte": "^3.55.0",
"tailwindcss": "^3.3.0"
},
"peerDependencies": {
"@ianvs/prettier-plugin-sort-imports": "*",
"@prettier/plugin-php": "*",
"@prettier/plugin-pug": "*",
"@shopify/prettier-plugin-liquid": "*",
"@shufo/prettier-plugin-blade": "*",
"@trivago/prettier-plugin-sort-imports": "*",
"prettier": ">=2.2.0",
"prettier-plugin-astro": "*",
"prettier-plugin-css-order": "*",
"prettier-plugin-import-sort": "*",
"prettier-plugin-jsdoc": "*",
"prettier-plugin-organize-attributes": "*",
"prettier-plugin-organize-imports": "*",
"prettier-plugin-style-order": "*",
"prettier-plugin-svelte": "*",
"prettier-plugin-twig-melody": "*"
},
"peerDependenciesMeta": {
"@ianvs/prettier-plugin-sort-imports": {
"optional": true
},
"@prettier/plugin-php": {
"optional": true
},
"@prettier/plugin-pug": {
"optional": true
},
"@shopify/prettier-plugin-liquid": {
"optional": true
},
"@shufo/prettier-plugin-blade": {
"optional": true
},
"@trivago/prettier-plugin-sort-imports": {
"optional": true
},
"prettier-plugin-astro": {
"optional": true
},
"prettier-plugin-css-order": {
"optional": true
},
"prettier-plugin-import-sort": {
"optional": true
},
"prettier-plugin-jsdoc": {
"optional": true
},
"prettier-plugin-organize-attributes": {
"optional": true
},
"prettier-plugin-organize-imports": {
"optional": true
},
"prettier-plugin-style-order": {
"optional": true
},
"prettier-plugin-svelte": {
"optional": true
},
"prettier-plugin-twig-melody": {
"optional": true
}
},
"engines": {
"node": ">=12.17.0"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module"
}
}
}