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 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
- ## Recommended
90
+ ## Related
91
91
 
92
- Try [**@standard-config/prettier**](https://github.com/standard-config/prettier) if you’re looking for a consistent, TypeScript-first Prettier config. It comes with this plugin pre-configured.
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
- "name": "prettier-plugin-expand-json",
3
- "version": "1.0.1",
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
- "packageManager": "pnpm@10.28.1",
33
- "dependencies": {
34
- "jsonc-parser": "^3.3.1"
35
- },
36
- "peerDependencies": {
37
- "prettier": ">=3"
38
- },
39
- "devDependencies": {
40
- "@standard-config/prettier": "1.4.0",
41
- "@standard-config/tsconfig": "2.0.0",
42
- "@vitest/coverage-v8": "4.0.17",
43
- "husky": "9.1.7",
44
- "oxlint": "1.41.0",
45
- "oxlint-tsgolint": "0.11.1",
46
- "prettier": "3.8.1",
47
- "prettier-plugin-sort-json": "4.2.0",
48
- "publint": "0.3.17",
49
- "tsdown": "0.19.0",
50
- "typescript": "5.9.3",
51
- "vitest": "4.0.17"
52
- },
53
- "scripts": {
54
- "build": "tsdown",
55
- "fix": "pnpm format && pnpm lint",
56
- "format": "prettier --write --ignore-unknown .",
57
- "format:check": "prettier --check --ignore-unknown .",
58
- "lint": "oxlint --fix --type-aware --type-check --deny-warnings --report-unused-disable-directives",
59
- "lint:check": "oxlint --type-aware --type-check --deny-warnings --report-unused-disable-directives",
60
- "prepack": "pnpm run '/^(format:check|lint:check|test|typecheck)$/' && pnpm build",
61
- "prepare": "husky",
62
- "test": "vitest run",
63
- "typecheck": "tsc --noEmit"
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
+ }