-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.7 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.7 KB
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
{
"name": "@ttskch/prettier-plugin-tailwindcss-anywhere",
"version": "0.1.2",
"description": "A Prettier plugin for sorting TailwindCSS classes in any HTML-like language, like Twig etc.",
"keywords": ["prettier", "tailwindcss", "formatter", "html", "twig"],
"type": "module",
"engines": {
"node": ">= 20.9 < 24"
},
"main": "./dist/index.js",
"exports": "./dist/index.js",
"files": ["dist", "src"],
"dependencies": {
"tslib": "~2.7"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "~20",
"@types/prettier": "^3.0.0",
"@vitest/coverage-v8": "~2.1",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7",
"rimraf": "~6.0",
"ts-api-utils": "~1.3",
"typescript": "~5.5",
"vitest": "~2.1"
},
"peerDependencies": {
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7"
},
"scripts": {
"prepare": "husky",
"start": "node dist/index.js",
"clean": "rimraf coverage dist tmp",
"prebuild": "biome lint",
"build": "tsc -d -p tsconfig.json",
"build:watch": "tsc -w -d -p tsconfig.json",
"build:release": "npm run clean && tsc -d -p tsconfig.release.json",
"prepublishOnly": "npm run build:release",
"check": "biome check",
"check:fix": "biome check --write",
"test": "vitest run unit",
"test:coverage": "vitest run unit --coverage.enabled --coverage.all",
"test:watch": "vitest unit"
},
"author": "Takashi Kanemoto <[email protected]>",
"homepage": "https://github.com/ttskch/prettier-plugin-tailwindcss-anywhere",
"repository": {
"type": "git",
"url": "ssh://[email protected]/ttskch/prettier-plugin-tailwindcss-anywhere"
},
"license": "MIT"
}