-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
61 lines (61 loc) · 1.33 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
{
"name": "prettier-plugin-organize-imports",
"version": "4.1.0",
"description": "Make prettier organize your imports using the TypeScript language service API.",
"keywords": [
"prettier",
"prettier-plugin",
"typescript",
"imports",
"organize-imports"
],
"main": "index.js",
"scripts": {
"test": "tsc && ava --verbose",
"preversion": "npm test"
},
"files": [
"index.js",
"lib",
"prettier.d.ts"
],
"author": "Simon Haenisch (https://github.com/simonhaenisch)",
"license": "MIT",
"repository": "simonhaenisch/prettier-plugin-organize-imports",
"homepage": "https://github.com/simonhaenisch/prettier-plugin-organize-imports#readme",
"peerDependencies": {
"prettier": ">=2.0",
"typescript": ">=2.9",
"vue-tsc": "^2.1.0"
},
"peerDependenciesMeta": {
"vue-tsc": {
"optional": true
}
},
"devDependencies": {
"@types/node": "22.5.5",
"@vue/language-plugin-pug": "2.1.6",
"ava": "6.1.3",
"prettier": "3.3.3",
"typescript": "5.6.2",
"vue-tsc": "^2.1.6"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "all",
"useTabs": true,
"overrides": [
{
"files": [
"package.json",
"*.md"
],
"options": {
"useTabs": false
}
}
]
}
}