-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.01 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.01 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@u3u/prettier-config",
"version": "5.2.0",
"description": "🎨 The most perfect Prettier config",
"keywords": [
"prettier-config",
"prettier-preset"
],
"repository": {
"url": "https://github.com/u3u/prettier-config.git"
},
"license": "MIT",
"author": "u3u <[email protected]> (https://github.com/u3u)",
"sideEffects": false,
"type": "commonjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./*": {
"import": {
"types": "./dist/*.d.mts",
"default": "./dist/*.mjs"
},
"require": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup && fix-tsup-cjs",
"format": "prettier --write .",
"lint": "eslint --fix .",
"prepare": "pnpm build",
"test": "vitest"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged --concurrent false"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
],
"*": [
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@prettier/plugin-php": "^0.24.0",
"@prettier/plugin-xml": "^3.4.2",
"@shufo/prettier-plugin-blade": "^1.16.1",
"deepmerge": "^4.3.1",
"local-pkg": "^0.5.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-classnames": "^0.8.6",
"prettier-plugin-ini": "^1.3.0",
"prettier-plugin-jsdoc": "^1.8.0",
"prettier-plugin-merge": "^0.8.0",
"prettier-plugin-multiline-arrays": "^4.0.5",
"prettier-plugin-nginx": "^1.0.3",
"prettier-plugin-packagejson": "^2.5.20",
"prettier-plugin-prisma": "^5.0.0",
"prettier-plugin-sh": "^0.18.0",
"prettier-plugin-sort-json": "^4.1.1",
"prettier-plugin-sql": "^0.19.2",
"prettier-plugin-tailwindcss": "^0.7.2",
"remeda": "^2.32.0"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.6.1",
"@tsconfig/node20": "^20.1.8",
"@types/node": "^20.19.26",
"@types/react": "^18.3.27",
"@u3u/eslint-config": "^2.15.2",
"@u3u/prettier-config": "link:",
"dedent": "^1.7.0",
"eslint": "^8.57.1",
"execa": "^9.6.1",
"fix-tsup-cjs": "^1.2.0",
"globby": "^14.1.0",
"lint-staged": "^16.4.0",
"prettier": "^3.7.4",
"simple-git-hooks": "^2.13.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"prettier": ">=3.0.0"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
},
"pnpm": {
"updateConfig": {
"ignoreDependencies": [
"@types/node"
]
}
}
}