-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.02 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.02 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
{
"name": "prettier-plugin-jsx-attr-sort",
"version": "1.0.4",
"description": "Prettier plugin for sorting JSX attributes",
"keywords": [
"prettier",
"plugin",
"jsx",
"attributes",
"sort"
],
"author": "Mattia Malonni",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/mattiamalonni/prettier-plugin-jsx-attr-sort"
},
"scripts": {
"build": "tsup",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"peerDependencies": {
"prettier": "^3.0.0"
},
"devDependencies": {
"@babel/generator": "^7.28.0",
"@babel/parser": "^7.28.0",
"@babel/traverse": "^7.28.0",
"@babel/types": "^7.28.1",
"@types/babel__generator": "^7.27.0",
"@types/babel__traverse": "^7.20.7",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
}
}