This repository was archived by the owner on Mar 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.46 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.46 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@xeraph-dev/prettier-config",
"version": "0.0.5",
"description": "An opinionated prettier config",
"license": "MIT",
"author": {
"url": "https://xeraph.dev",
"name": "Xeraph"
},
"repository": {
"type": "git",
"url": "https://github.com/xeraph-dev/prettier-config"
},
"homepage": "https://github.com/xeraph-dev/prettier-config",
"bugs": "https://github.com/xeraph-dev/prettier-config/issues",
"exports": {
".": "./index.cjs",
"./package.json": "./package.json"
},
"files": [
"./index.cjs",
"./package.json"
],
"scripts": {
"prepare": "husky install",
"lint": "eslint index.cjs --fix",
"change": "changeset",
"release": "changeset publish",
"version": "changeset version"
},
"eslintConfig": {
"extends": "@xeraph-dev"
},
"dependencies": {
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"prettier-plugin-css-order": "^2.0.0",
"prettier-plugin-prisma": "^5.0.0",
"prettier-plugin-tailwindcss": "^0.5.4"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@xeraph-dev/eslint-config": "^0.0.4",
"husky": "^8.0.0"
},
"peerDependencies": {
"astro": ">=2",
"postcss": ">=8",
"prisma": ">=5",
"tailwind": ">=3"
},
"peerDependenciesMeta": {
"astro": {
"optional": true
},
"postcss": {
"optional": true
},
"prisma": {
"optional": true
},
"tailwind": {
"optional": true
}
}
}