forked from JamieMason/syncpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 4.16 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 4.16 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "syncpack",
"description": "Consistent dependency versions in large JavaScript Monorepos",
"version": "12.3.0",
"author": "Jamie Mason <jamie@foldleft.io> (https://github.com/JamieMason)",
"bin": {
"syncpack": "dist/bin.js",
"syncpack-fix-mismatches": "dist/bin-fix-mismatches/index.js",
"syncpack-format": "dist/bin-format/index.js",
"syncpack-lint": "dist/bin-lint/index.js",
"syncpack-lint-semver-ranges": "dist/bin-lint-semver-ranges/index.js",
"syncpack-list": "dist/bin-list/index.js",
"syncpack-list-mismatches": "dist/bin-list-mismatches/index.js",
"syncpack-prompt": "dist/bin-prompt/index.js",
"syncpack-set-semver-ranges": "dist/bin-set-semver-ranges/index.js",
"syncpack-update": "dist/bin-update/index.js"
},
"bugs": "https://github.com/JamieMason/syncpack/issues",
"contributors": [
"Alex Hayton (https://github.com/AlexHayton)",
"Aparajita Fishman (https://github.com/aparajita)",
"Artur Wierzbicki (https://github.com/ArturWierzbicki)",
"Daniel Silva (https://github.com/dsilvasc)",
"Jamie Haywood (https://github.com/jamiehaywood)",
"Jamie Mason (https://github.com/JamieMason)",
"Jody Heavener (https://github.com/jodyheavener)",
"Keyan Zhang (https://github.com/keyz)",
"Luis Vieira (https://github.com/luisvieiragmr)",
"Marais Rossouw (https://github.com/maraisr)",
"Matt Sprague (https://github.com/uforic)",
"Michał Warać (https://github.com/auto200)",
"Siraj (https://github.com/Syhner)",
"Tom Fletcher (https://github.com/tom-fletcher)"
],
"dependencies": {
"@effect/schema": "0.56.1",
"chalk": "4.1.2",
"commander": "11.1.0",
"cosmiconfig": "9.0.0",
"effect": "2.0.0-next.62",
"enquirer": "2.4.1",
"fast-check": "3.15.0",
"globby": "11.1.0",
"minimatch": "9.0.3",
"npm-package-arg": "11.0.1",
"ora": "5.4.1",
"prompts": "2.4.2",
"read-yaml-file": "2.1.0",
"semver": "7.5.4",
"tightrope": "0.1.0",
"ts-toolbelt": "9.6.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "8.0.1",
"@tsconfig/node18": "18.2.2",
"@types/node": "20.10.6",
"@types/npm-package-arg": "6.1.4",
"@types/prompts": "2.4.9",
"@types/semver": "7.5.6",
"@typescript-eslint/eslint-plugin": "6.16.0",
"@typescript-eslint/parser": "6.16.0",
"@vitest/coverage-v8": "1.1.0",
"auto-changelog": "2.4.0",
"eslint": "8.56.0",
"eslint-plugin-import": "2.29.1",
"memfs": "4.6.0",
"prettier": "3.1.1",
"prettier-plugin-astro": "0.12.3",
"quill-delta": "5.1.0",
"release-it": "17.0.1",
"rxjs": "7.8.1",
"ts-node": "10.9.2",
"tslib": "2.6.2",
"typescript": "5.3.3",
"typescript-json-schema": "0.62.0",
"vitest": "1.1.0"
},
"engines": {
"node": ">=16"
},
"files": [
"dist"
],
"homepage": "https://github.com/JamieMason/syncpack#readme",
"keywords": [
"dependencies",
"exact-versions",
"lerna",
"lernajs",
"monorepo",
"npm",
"nx",
"package-json",
"packages",
"pnpm",
"semver",
"sort-package-json",
"turbo",
"turborepo",
"version-linter",
"versions",
"workspaces",
"yarn"
],
"license": "MIT",
"main": "dist/index.js",
"pnpm": {
"overrides": {
"chalk": "4.1.2",
"effect": "2.0.0-next.62",
"string-width": "<5.0.0",
"strip-ansi": "<7.0.0",
"wrap-ansi": "<8.0.0"
}
},
"repository": "JamieMason/syncpack",
"scripts": {
"build": "pnpm run clean && pnpm run build:source && pnpm run build:json-schema",
"build:json-schema": "typescript-json-schema --esModuleInterop --noExtraProps src/index.ts RcFile --out dist/schema.json",
"build:source": "tsc --project tsconfig.build.json",
"clean": "rm -rf ./dist",
"format": "pnpm run format:lint && pnpm run format:source",
"format:lint": "eslint --ext .ts . --fix",
"format:source": "prettier --write .",
"lint": "pnpm run lint:ts && pnpm run lint:eslint",
"lint:eslint": "eslint --ext .ts .",
"lint:ts": "tsc --noEmit --project tsconfig.json",
"prepack": "pnpm run build",
"release": "release-it",
"test": "vitest run --config vitest.config.ts"
}
}