-
-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.86 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.86 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
{
"name": "prettier-eslint-cli",
"version": "9.0.0-alpha.2",
"type": "commonjs",
"description": "CLI for prettier-eslint",
"repository": "git+https://github.com/prettier/prettier-eslint-cli.git",
"homepage": "https://github.com/prettier/prettier-eslint-cli#readme",
"author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
"maintainers": [
"Simon Fridlund <simon@fridlund.email>",
"JounQin (https://www.1stG.me) <admin@1stg.me>"
],
"funding": "https://opencollective.com/prettier-eslint-cli",
"license": "MIT",
"packageManager": "yarn@4.9.1",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"bin": {
"prettier-eslint": "dist/index.js"
},
"main": "dist/no-main.js",
"files": [
"dist"
],
"keywords": [
"eslint",
"formatter",
"prettier",
"prettier-eslint",
"prettier-eslint-cli"
],
"scripts": {
"build": "nps build",
"format": "nps format",
"lint": "nps lint",
"prepare": "patch-package && simple-git-hooks && yarn-berry-deduplicate || exit 0",
"release": "nps build && clean-pkg-json && changeset publish",
"start": "nps",
"test": "nps test",
"version": "changeset version && yarn --no-immutable && nps test.update"
},
"peerDependencies": {
"prettier-eslint": "*"
},
"peerDependenciesMeta": {
"prettier-eslint": {
"optional": true
}
},
"dependencies": {
"@esm2cjs/indent-string": "^5.0.0",
"@messageformat/core": "^3.4.0",
"@prettier/eslint": "npm:prettier-eslint@^17.0.0-alpha.1",
"chalk-cjs": "^5.2.0",
"common-tags": "^1.8.2",
"core-js": "^3.42.0",
"eslint": "^9.26.0",
"find-up": "^5.0.0",
"glob": "^10.4.5",
"ignore": "^7.0.4",
"lodash.memoize": "^4.1.2",
"loglevel-colored-level-prefix": "^1.0.0",
"rxjs": "^7.8.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@1stg/eslint-config": "^9.0.6",
"@1stg/prettier-config": "^5.2.0",
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.1",
"@babel/node": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.4",
"@types/jest": "^29.5.14",
"@unts/patch-package": "^8.1.1",
"all-contributors-cli": "^6.26.1",
"clean-pkg-json": "^1.3.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-node-dependencies": "^1.0.1",
"jest": "^29.7.0",
"nano-staged": "^0.8.0",
"nps": "^5.10.0",
"nps-utils": "^1.7.0",
"pify": "^5.0.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.13.0",
"spawn-command": "1.0.0",
"typescript-eslint": "^8.32.1",
"yarn-berry-deduplicate": "^6.1.3"
},
"nano-staged": {
"*.{js,json,md,mjs,yml}": "node ./dist --write"
},
"prettier": "@1stg/prettier-config/semi",
"simple-git-hooks": {
"pre-commit": "yarn nano-staged && yarn start validate"
}
}