-
-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.04 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.04 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
{
"name": "prettier-eslint",
"version": "17.0.0-alpha.1",
"type": "commonjs",
"description": "Formats your JavaScript using prettier followed by eslint --fix",
"repository": "git+https://github.com/prettier/prettier-eslint.git",
"homepage": "https://github.com/prettier/prettier-eslint#readme",
"author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
"maintainers": [
"Simon Fridlund <simon@fridlund.email>",
"JounQin <admin@1stg.me> (https://www.1stG.me)"
],
"funding": "https://opencollective.com/prettier-eslint",
"license": "MIT",
"packageManager": "yarn@4.9.1",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.d.ts",
"index.js",
"lib",
"!lib/*.tsbuildinfo"
],
"keywords": [
"eslint",
"formatter",
"linter",
"prettier",
"prettier-eslint"
],
"scripts": {
"build": "nps build",
"format": "nps format",
"lint": "nps lint",
"prepare": "patch-package && simple-git-hooks && yarn-berry-deduplicate || exit 0",
"start": "nps",
"test": "nps test"
},
"peerDependencies": {
"prettier-plugin-svelte": "^3.0.0",
"svelte-eslint-parser": "*"
},
"peerDependenciesMeta": {
"prettier-plugin-svelte": {
"optional": true
},
"svelte-eslint-parser": {
"optional": true
}
},
"dependencies": {
"@esm2cjs/indent-string": "^5.0.0",
"@typescript-eslint/parser": "^8.32.0",
"common-tags": "^1.8.2",
"dlv": "^1.1.3",
"eslint": "^9.26.0",
"lodash.merge": "^4.6.2",
"loglevel-colored-level-prefix": "^1.0.0",
"prettier": "^3.5.3",
"pretty-format": "^29.7.0",
"require-relative": "^0.8.7",
"tslib": "^2.8.1",
"vue-eslint-parser": "^10.1.3"
},
"devDependencies": {
"@1stg/eslint-config": "^9.0.6",
"@1stg/prettier-config": "^5.2.0",
"@1stg/tsconfig": "^3.0.3",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.3",
"@swc-node/jest": "^1.8.13",
"@swc/core": "^1.11.24",
"@swc/helpers": "^0.5.17",
"@total-typescript/ts-reset": "^0.6.1",
"@types/common-tags": "^1.8.4",
"@types/dlv": "^1.1.5",
"@types/jest": "^29.5.14",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^22.15.17",
"@types/require-relative": "^0.8.2",
"@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",
"nps": "^5.10.0",
"nps-utils": "^1.7.0",
"prettier-eslint": "portal:.",
"prettier-eslint-cli": "^8.0.1",
"prettier-plugin-jsdoc": "^1.3.2",
"prettier-plugin-jsdoc-type": "^0.1.12",
"prettier-plugin-svelte": "^3.3.3",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.13.0",
"svelte": "^5.28.2",
"svelte-eslint-parser": "^1.1.3",
"typescript": "^5.8.3",
"yarn-berry-deduplicate": "^6.1.3"
},
"resolutions": {
"@prettier/eslint": "portal:.",
"eslint": "^9.26.0"
}
}