prettier-plugin-expand-json 1.0.1 → 1.0.3
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/README.md +2 -2
- package/dist/index.d.mts.map +1 -0
- package/package.json +64 -64
package/README.md
CHANGED
|
@@ -87,9 +87,9 @@ If you’re using multiple JSON-related plugins, make sure `prettier-plugin-expa
|
|
|
87
87
|
}
|
|
88
88
|
```
|
|
89
89
|
|
|
90
|
-
##
|
|
90
|
+
## Related
|
|
91
91
|
|
|
92
|
-
|
|
92
|
+
- [**@standard-config/prettier**](https://github.com/standard-config/prettier)
|
|
93
93
|
|
|
94
94
|
## License
|
|
95
95
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/index.ts"],"mappings":";;;cA0Ga,OAAA,EAAS,MAAA;AAAA,cAUT,QAAA,EAAU,MAAA"}
|
package/package.json
CHANGED
|
@@ -1,65 +1,65 @@
|
|
|
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
|
-
}
|
|
2
|
+
"name": "prettier-plugin-expand-json",
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "Expand JSON arrays and objects into multi-line notation with Prettier",
|
|
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/porada/prettier-plugin-expand-json.git"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"formatting",
|
|
17
|
+
"json",
|
|
18
|
+
"jsonc",
|
|
19
|
+
"prettier",
|
|
20
|
+
"prettier-plugin"
|
|
21
|
+
],
|
|
22
|
+
"files": [
|
|
23
|
+
"dist/**"
|
|
24
|
+
],
|
|
25
|
+
"type": "module",
|
|
26
|
+
"sideEffects": false,
|
|
27
|
+
"exports": "./dist/index.mjs",
|
|
28
|
+
"types": "./dist/index.d.mts",
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=20"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"jsonc-parser": "^3.3.1"
|
|
34
|
+
},
|
|
35
|
+
"peerDependencies": {
|
|
36
|
+
"prettier": ">=3"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@standard-config/eslint": "1.2.1",
|
|
40
|
+
"@standard-config/prettier": "1.6.1",
|
|
41
|
+
"@standard-config/tsconfig": "2.0.2",
|
|
42
|
+
"@vitest/coverage-v8": "4.0.18",
|
|
43
|
+
"eslint": "9.39.2",
|
|
44
|
+
"husky": "9.1.7",
|
|
45
|
+
"jiti": "2.6.1",
|
|
46
|
+
"oxlint": "1.42.0",
|
|
47
|
+
"oxlint-tsgolint": "0.11.2",
|
|
48
|
+
"prettier": "3.8.1",
|
|
49
|
+
"prettier-plugin-sort-json": "4.2.0",
|
|
50
|
+
"publint": "0.3.17",
|
|
51
|
+
"tsdown": "0.20.1",
|
|
52
|
+
"typescript": "5.9.3",
|
|
53
|
+
"vitest": "4.0.18"
|
|
54
|
+
},
|
|
55
|
+
"scripts": {
|
|
56
|
+
"build": "tsdown",
|
|
57
|
+
"fix": "pnpm format && pnpm lint",
|
|
58
|
+
"format": "prettier --write --ignore-unknown .",
|
|
59
|
+
"format:check": "prettier --check --ignore-unknown .",
|
|
60
|
+
"lint": "oxlint --fix --type-aware --type-check --deny-warnings --report-unused-disable-directives && eslint . --fix",
|
|
61
|
+
"lint:check": "oxlint --type-aware --type-check --deny-warnings --report-unused-disable-directives && eslint .",
|
|
62
|
+
"test": "vitest run",
|
|
63
|
+
"typecheck": "tsc --noEmit"
|
|
64
|
+
}
|
|
65
|
+
}
|