@standard-config/prettier 1.6.0 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +71 -74
package/package.json
CHANGED
|
@@ -1,75 +1,72 @@
|
|
|
1
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
|
-
"typecheck": "tsc --noEmit"
|
|
74
|
-
}
|
|
75
|
-
}
|
|
2
|
+
"name": "@standard-config/prettier",
|
|
3
|
+
"version": "1.6.1",
|
|
4
|
+
"description": "TypeScript-first Prettier config",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Dom Porada",
|
|
8
|
+
"email": "dom@dom.engineering",
|
|
9
|
+
"url": "https://dom.engineering"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/standard-config/prettier.git"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"json-sorting",
|
|
17
|
+
"oxc",
|
|
18
|
+
"prettier-config",
|
|
19
|
+
"standard-config",
|
|
20
|
+
"typescript"
|
|
21
|
+
],
|
|
22
|
+
"files": [
|
|
23
|
+
".editorconfig",
|
|
24
|
+
"dist/**"
|
|
25
|
+
],
|
|
26
|
+
"type": "module",
|
|
27
|
+
"sideEffects": false,
|
|
28
|
+
"exports": "./dist/index.mjs",
|
|
29
|
+
"types": "./dist/index.d.mts",
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=20"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"@prettier/plugin-oxc": "^0.1.3",
|
|
35
|
+
"prettier-plugin-expand-json": "^1.0.2",
|
|
36
|
+
"prettier-plugin-packagejson": "^3.0.0",
|
|
37
|
+
"prettier-plugin-sh": "^0.18.0",
|
|
38
|
+
"prettier-plugin-sort-json": "^4.2.0",
|
|
39
|
+
"rfdc": "^1.4.1"
|
|
40
|
+
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"prettier": ">=3.7"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@standard-config/eslint": "1.2.1",
|
|
46
|
+
"@standard-config/tsconfig": "2.0.1",
|
|
47
|
+
"@vitest/coverage-v8": "4.0.18",
|
|
48
|
+
"eslint": "9.39.2",
|
|
49
|
+
"husky": "9.1.7",
|
|
50
|
+
"jiti": "2.6.1",
|
|
51
|
+
"oxlint": "1.41.0",
|
|
52
|
+
"oxlint-tsgolint": "0.11.2",
|
|
53
|
+
"prettier": "3.8.1",
|
|
54
|
+
"publint": "0.3.17",
|
|
55
|
+
"tsdown": "0.20.1",
|
|
56
|
+
"typescript": "5.9.3",
|
|
57
|
+
"vitest": "4.0.18"
|
|
58
|
+
},
|
|
59
|
+
"scripts": {
|
|
60
|
+
"build": "tsdown",
|
|
61
|
+
"fix": "pnpm format && pnpm lint",
|
|
62
|
+
"fixtures:scramble": "prettier --config fixtures/config.ts --write fixtures && sleep 1",
|
|
63
|
+
"fixtures:unscramble": "pnpm prettier --write fixtures && sleep 1",
|
|
64
|
+
"format": "prettier --write --ignore-unknown .",
|
|
65
|
+
"format:check": "prettier --check --ignore-unknown .",
|
|
66
|
+
"lint": "oxlint --fix --type-aware --type-check --deny-warnings --report-unused-disable-directives && eslint . --fix",
|
|
67
|
+
"lint:check": "oxlint --type-aware --type-check --deny-warnings --report-unused-disable-directives && eslint .",
|
|
68
|
+
"test": "vitest run",
|
|
69
|
+
"test:fixtures": "pnpm run '/^fixtures:/' && git diff --exit-code fixtures",
|
|
70
|
+
"typecheck": "tsc --noEmit"
|
|
71
|
+
}
|
|
72
|
+
}
|