-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.48 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
{
"name": "prettier-plugin-twin.macro",
"version": "1.0.14",
"description": "A Prettier plugin for sorting Tailwind CSS classes on twin.macro",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"_esbuild": "node ./scripts/build.js",
"build": "yarn _esbuild --minify",
"dev": "yarn _esbuild --watch",
"prebuild": "rimraf ./dist && cpy node_modules/tailwindcss/lib/css/ dist/css/ --flat",
"prepare": "yarn build",
"prepublishOnly": "yarn test",
"test": "ava",
"test:dev": "ava --watch"
},
"repository": "git@github.com:mohammadsiyou/prettier-plugin-twin.macro.git",
"author": "Mohammad Ghorbani <mohammadcj003@gmail.com>",
"license": "MIT",
"keywords": [
"prettier",
"tailwindcss",
"twin.macro"
],
"devDependencies": {
"@babel/parser": "^7.17.10",
"@babel/traverse": "^7.17.10",
"@babel/types": "^7.17.10",
"@types/babel__traverse": "^7.17.1",
"@types/lodash": "^4.14.194",
"@types/node": "^17.0.31",
"@types/object-hash": "^2.2.1",
"@types/prettier": "^2.6.3",
"@types/tailwindcss": "^3.0.10",
"ava": "^4.2.0",
"cpy-cli": "^4.1.0",
"esbuild": "^0.14.38",
"escalade": "^3.1.1",
"lodash": "^4.17.21",
"object-hash": "^3.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.4"
},
"peerDependencies": {
"prettier": ">=2.2.0",
"tailwindcss": ">=3.0.24"
}
}