syncpack 12.0.0 → 12.0.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.
Files changed (1) hide show
  1. package/package.json +18 -12
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "syncpack",
3
3
  "description": "Consistent dependency versions in large JavaScript Monorepos",
4
- "version": "12.0.0",
4
+ "version": "12.0.1",
5
5
  "author": "Jamie Mason <jamie@foldleft.io> (https://github.com/JamieMason)",
6
6
  "bin": {
7
7
  "syncpack": "dist/bin.js",
@@ -24,6 +24,7 @@
24
24
  "Jamie Haywood (https://github.com/jamiehaywood)",
25
25
  "Jamie Mason (https://github.com/JamieMason)",
26
26
  "Jody Heavener (https://github.com/jodyheavener)",
27
+ "Keyan Zhang (https://github.com/keyz)",
27
28
  "Luis Vieira (https://github.com/luisvieiragmr)",
28
29
  "Marais Rossouw (https://github.com/maraisr)",
29
30
  "Matt Sprague (https://github.com/uforic)",
@@ -32,13 +33,13 @@
32
33
  "Tom Fletcher (https://github.com/tom-fletcher)"
33
34
  ],
34
35
  "dependencies": {
35
- "@effect/match": "0.40.0",
36
36
  "@effect/schema": "0.56.0",
37
37
  "chalk": "4.1.2",
38
38
  "commander": "11.1.0",
39
39
  "cosmiconfig": "9.0.0",
40
40
  "effect": "2.0.0-next.62",
41
41
  "enquirer": "2.4.1",
42
+ "fast-check": "3.15.0",
42
43
  "globby": "11.1.0",
43
44
  "minimatch": "9.0.3",
44
45
  "npm-package-arg": "11.0.1",
@@ -65,8 +66,11 @@
65
66
  "memfs": "4.6.0",
66
67
  "prettier": "3.1.1",
67
68
  "prettier-plugin-astro": "0.12.2",
69
+ "quill-delta": "5.1.0",
68
70
  "release-it": "17.0.1",
71
+ "rxjs": "7.8.1",
69
72
  "ts-node": "10.9.2",
73
+ "tslib": "2.6.2",
70
74
  "typescript": "5.3.3",
71
75
  "typescript-json-schema": "0.62.0",
72
76
  "vitest": "1.1.0"
@@ -100,26 +104,28 @@
100
104
  ],
101
105
  "license": "MIT",
102
106
  "main": "dist/index.js",
103
- "overrides": {
104
- "chalk": "4.1.2",
105
- "effect": "2.0.0-next.62",
106
- "string-width": "<5.0.0",
107
- "strip-ansi": "<7.0.0",
108
- "wrap-ansi": "<8.0.0"
107
+ "pnpm": {
108
+ "overrides": {
109
+ "chalk": "4.1.2",
110
+ "effect": "2.0.0-next.62",
111
+ "string-width": "<5.0.0",
112
+ "strip-ansi": "<7.0.0",
113
+ "wrap-ansi": "<8.0.0"
114
+ }
109
115
  },
110
116
  "repository": "JamieMason/syncpack",
111
117
  "scripts": {
112
- "build": "npm run clean && npm run build:source && npm run build:json-schema",
118
+ "build": "pnpm run clean && pnpm run build:source && pnpm run build:json-schema",
113
119
  "build:json-schema": "typescript-json-schema --noExtraProps src/index.ts RcFile --out dist/schema.json",
114
120
  "build:source": "tsc --project tsconfig.build.json",
115
121
  "clean": "rm -rf ./dist",
116
- "format": "npm run format:lint && npm run format:source",
122
+ "format": "pnpm run format:lint && pnpm run format:source",
117
123
  "format:lint": "eslint --ext .ts . --fix",
118
124
  "format:source": "prettier --write .",
119
- "lint": "npm run lint:ts && npm run lint:eslint",
125
+ "lint": "pnpm run lint:ts && pnpm run lint:eslint",
120
126
  "lint:eslint": "eslint --ext .ts .",
121
127
  "lint:ts": "tsc --noEmit --project tsconfig.json",
122
- "prepack": "npm run build",
128
+ "prepack": "pnpm run build",
123
129
  "release": "release-it",
124
130
  "test": "vitest run --config vitest.config.ts"
125
131
  }