-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.8 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
{
"name": "prettier-plugin-imports",
"version": "4.2.12",
"description": "A prettier plugins to sort imports in provided RegEx order",
"repository": {
"type": "git",
"url": "https://github.com/oviirup/prettier-plugin-imports"
},
"author": {
"name": "Avirup Ghosh",
"url": "https://github.com/oviirup"
},
"license": "MIT",
"private": false,
"main": "dist/index.js",
"exports": {
".": {
"default": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"types": "dist/index.d.ts",
"keywords": [
"prettier",
"plugin",
"sort",
"organize",
"import",
"typescript",
"javascript"
],
"scripts": {
"build": "bunchee -m",
"build:watch": "bunchee -w",
"format": "prettier . -w -u",
"format:check": "prettier . --check",
"prepare": "pnpm run build",
"test": "vitest --run",
"test:types": "tsc --noEmit",
"test:watch": "vitest"
},
"peerDependencies": {
"@vue/compiler-sfc": ">=3",
"prettier": ">=3"
},
"peerDependenciesMeta": {
"@vue/compiler-sfc": {
"optional": true
}
},
"dependencies": {
"@babel/core": "^7",
"@babel/generator": "^7",
"@babel/parser": "^7",
"@babel/traverse": "^7",
"@babel/types": "^7",
"semver": "^7"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5",
"@changesets/cli": "^2",
"@types/babel__generator": "^7",
"@types/babel__traverse": "^7",
"@types/node": "^20",
"@types/semver": "^7",
"@vue/compiler-sfc": "^3",
"bunchee": "^5",
"prettier": "^3",
"prettier-plugin-jsdoc": "^1.3",
"prettier-plugin-pkg": "^0.18",
"typescript": "^5",
"vitest": "^2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}