-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
88 lines (88 loc) · 2.63 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@ianvs/prettier-plugin-sort-imports",
"private": false,
"version": "4.4.0",
"description": "A prettier plugins to sort imports in provided RegEx order",
"main": "lib/src/index.js",
"types": "types/index.d.ts",
"repository": {
"url": "git+https://github.com/ianvs/prettier-plugin-sort-imports.git",
"type": "git"
},
"homepage": "https://github.com/ianvs/prettier-plugin-sort-imports#readme",
"files": [
"CHANGELOG.md",
"lib/**",
"!lib/**/__tests__/**",
"types"
],
"scripts": {
"prepare": "pnpm run compile",
"compile": "tsc",
"preexample": "pnpm run compile",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules vitest --run",
"test:watch": "vitest",
"format": "prettier . --write",
"format:check": "prettier . --check",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run compile && npm run test"
},
"keywords": [
"prettier",
"plugin",
"sort",
"import",
"typescript",
"javascript"
],
"contributors": [
{
"name": "Ayush Sharma",
"email": "[email protected]",
"url": "https://github.com/ayusharma"
},
{
"name": "Behrang Yarahmadi",
"url": "https://github.com/byara"
},
{
"name": "Andre Wachsmuth",
"email": "[email protected]",
"url": "https://github.com/blutorange"
}
],
"license": "Apache-2.0",
"dependencies": {
"@babel/generator": "^7.26.2",
"@babel/parser": "^7.26.2",
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.26.0",
"semver": "^7.5.2"
},
"devDependencies": {
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.5",
"@types/node": "^18.15.13",
"@types/prettier": "^3.0.0",
"@types/semver": "^7.5.3",
"@vue/compiler-sfc": "3.4.21",
"cross-env": "^7.0.3",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.14.0",
"typescript": "5.2.2",
"vitest": "^0.34.5"
},
"resolutions": {
"vite": "^4.0.0"
},
"peerDependencies": {
"@vue/compiler-sfc": "2.7.x || 3.x",
"prettier": "2 || 3"
},
"peerDependenciesMeta": {
"@vue/compiler-sfc": {
"optional": true
}
},
"packageManager": "[email protected]+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903"
}