-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.04 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
{
"name": "prettier-plugin-astro-organize-imports",
"version": "0.4.11",
"description": "A Prettier plugin for formatting imports in Astro files",
"keywords": [
"plugin",
"formatter",
"prettier",
"astro",
"sort-imports"
],
"homepage": "https://github.com/neoki07/prettier-plugin-astro-organize-imports#readme",
"bugs": {
"url": "https://github.com/neoki07/prettier-plugin-astro-organize-imports/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neoki07/prettier-plugin-astro-organize-imports.git"
},
"license": "MIT",
"author": "neoki",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "node scripts/build.mjs",
"clean": "rimraf dist",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "lefthook install",
"release": "npm run clean && npm run build && changeset publish",
"test": "npm run build && vitest --run",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@astrojs/compiler": "^2.8.0",
"typescript": "^5.4.5"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@eslint/js": "^9.2.0",
"@types/node": "^22.0.0",
"esbuild": "^0.25.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^10.0.1",
"lefthook": "^1.6.10",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.14.0",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.6.2",
"rimraf": "^6.0.1",
"typescript-eslint": "^8.7.0",
"vitest": "^3.0.2"
},
"peerDependencies": {
"prettier": "^3.0",
"prettier-plugin-astro": "*",
"prettier-plugin-tailwindcss": "*"
},
"peerDependenciesMeta": {
"prettier-plugin-astro": {
"optional": true
},
"prettier-plugin-tailwindcss": {
"optional": true
}
},
"publishConfig": {
"access": "public"
}
}