forked from tailwindlabs/prettier-plugin-tailwindcss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.27 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
{
"name": "prettier-plugin-tailwindcss",
"version": "0.2.0",
"description": "A Prettier plugin for sorting Tailwind CSS classes.",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/tailwindlabs/prettier-plugin-tailwindcss"
},
"bugs": {
"url": "https://github.com/tailwindlabs/prettier-plugin-tailwindcss/issues"
},
"scripts": {
"_pre": "rimraf dist && cpy node_modules/tailwindcss/lib/css dist/css",
"_esbuild": "node build.js",
"prebuild": "npm run _pre",
"build": "npm run _esbuild -- --minify",
"predev": "npm run _pre",
"dev": "npm run _esbuild -- --watch",
"test": "jest",
"testwatch": "jest --watch",
"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": {
"@prettier/plugin-php": "^0.19.2",
"@prettier/plugin-pug": "^2.3.0",
"@shopify/prettier-plugin-liquid": "^0.4.0",
"@shufo/prettier-plugin-blade": "^1.8.0",
"@tailwindcss/line-clamp": "^0.3.0",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"cpy-cli": "^3.1.1",
"esbuild": "^0.14.11",
"escalade": "^3.1.1",
"import-fresh": "^3.3.0",
"import-from": "^4.0.0",
"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.4.1",
"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.1.0",
"prettier-plugin-style-order": "^0.2.2",
"prettier-plugin-svelte": "^2.7.0",
"prettier-plugin-twig-melody": "^0.4.6",
"recast": "^0.20.5",
"rimraf": "^3.0.2",
"svelte": "^3.46.4",
"tailwindcss": "^3.0.23"
},
"peerDependencies": {
"prettier": ">=2.2.0"
},
"engines": {
"node": ">=12.17.0"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module"
}
}
}