This repository was archived by the owner on Mar 26, 2026. 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
63 lines (63 loc) · 1.45 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.45 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
{
"name": "@benhigham/prettier-config",
"version": "1.0.0",
"description": "My personal Prettier configuration.",
"license": "MIT",
"homepage": "https://github.com/benhigham/prettier-config#readme",
"bugs": {
"url": "https://github.com/benhigham/prettier-config/issues/new"
},
"repository": {
"type": "git",
"url": "https://github.com/benhigham/prettier-config.git"
},
"funding": "https://github.com/sponsors/benhigham",
"author": {
"name": "Ben Higham",
"url": "https://benhigham.com"
},
"type": "module",
"module": "./src/index.js",
"exports": "./src/index.js",
"sideEffects": false,
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.32.1",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"changeset": "changeset",
"changeset:status": "changeset status",
"version": "changeset version",
"release": "changeset publish"
},
"files": [
"src"
],
"keywords": [
"prettier",
"format",
"formatter",
"code",
"config",
"editorconfig",
"enforce",
"quality",
"standard",
"strict",
"style",
"styleguide"
],
"devDependencies": {
"@benhigham/commitlint-config": "^1.0.0",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.4.3",
"lefthook": "^2.1.2",
"prettier": "^3.8.1"
},
"peerDependencies": {
"prettier": ">=3.5.3"
}
}