Skip to content

Commit 610a92e

Browse files
Copiloticlanton
andcommitted
Fix package.json sorting violations across the repo
Co-authored-by: iclanton <5010588+iclanton@users.noreply.github.com>
1 parent 707c1cd commit 610a92e

123 files changed

Lines changed: 995 additions & 995 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

apps/api-documenter/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@
22
"name": "@microsoft/api-documenter",
33
"version": "7.28.8",
44
"description": "Read JSON files from api-extractor, generate documentation pages",
5+
"homepage": "https://api-extractor.com/",
56
"repository": {
67
"type": "git",
78
"url": "https://github.com/microsoft/rushstack.git",
89
"directory": "apps/api-documenter"
910
},
10-
"homepage": "https://api-extractor.com/",
1111
"license": "MIT",
12-
"scripts": {
13-
"build": "heft build --clean",
14-
"_phase:build": "heft run --only build -- --clean",
15-
"_phase:test": "heft run --only test -- --clean"
16-
},
12+
"main": "lib/index.js",
13+
"typings": "dist/rollup.d.ts",
1714
"bin": {
1815
"api-documenter": "./bin/api-documenter"
1916
},
20-
"main": "lib/index.js",
21-
"typings": "dist/rollup.d.ts",
17+
"scripts": {
18+
"_phase:build": "heft run --only build -- --clean",
19+
"_phase:test": "heft run --only test -- --clean",
20+
"build": "heft build --clean"
21+
},
2222
"dependencies": {
2323
"@microsoft/api-extractor-model": "workspace:*",
2424
"@microsoft/tsdoc": "~0.16.0",

apps/api-extractor/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,27 +19,27 @@
1919
"alpha",
2020
"beta"
2121
],
22+
"homepage": "https://api-extractor.com",
2223
"repository": {
2324
"type": "git",
2425
"url": "https://github.com/microsoft/rushstack.git",
2526
"directory": "apps/api-extractor"
2627
},
27-
"homepage": "https://api-extractor.com",
28+
"license": "MIT",
2829
"main": "lib/index.js",
2930
"typings": "dist/rollup.d.ts",
3031
"bin": {
3132
"api-extractor": "./bin/api-extractor"
3233
},
33-
"license": "MIT",
3434
"scripts": {
35-
"build": "heft build --clean",
3635
"_phase:build": "heft run --only build -- --clean",
37-
"_phase:test": "heft run --only test -- --clean"
36+
"_phase:test": "heft run --only test -- --clean",
37+
"build": "heft build --clean"
3838
},
3939
"dependencies": {
4040
"@microsoft/api-extractor-model": "workspace:*",
41-
"@microsoft/tsdoc-config": "~0.18.0",
4241
"@microsoft/tsdoc": "~0.16.0",
42+
"@microsoft/tsdoc-config": "~0.18.0",
4343
"@rushstack/node-core-library": "workspace:*",
4444
"@rushstack/rig-package": "workspace:*",
4545
"@rushstack/terminal": "workspace:*",

apps/cpu-profile-summarizer/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
"url": "https://github.com/microsoft/rushstack.git",
88
"directory": "apps/cpu-profile-summarizer"
99
},
10+
"license": "MIT",
1011
"bin": {
1112
"cpu-profile-summarizer": "./bin/cpu-profile-summarizer"
1213
},
13-
"license": "MIT",
1414
"scripts": {
15-
"start": "node lib/start",
16-
"build": "heft build --clean",
1715
"_phase:build": "heft run --only build -- --clean",
18-
"_phase:test": "heft run --only test -- --clean"
16+
"_phase:test": "heft run --only test -- --clean",
17+
"build": "heft build --clean",
18+
"start": "node lib/start"
1919
},
2020
"dependencies": {
2121
"@rushstack/ts-command-line": "workspace:*",

apps/heft/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,23 @@
1212
"compiler",
1313
"incremental"
1414
],
15+
"homepage": "https://rushstack.io/pages/heft/overview/",
1516
"repository": {
1617
"type": "git",
1718
"url": "https://github.com/microsoft/rushstack.git",
1819
"directory": "apps/heft"
1920
},
20-
"engines": {
21-
"node": ">=10.13.0"
22-
},
23-
"homepage": "https://rushstack.io/pages/heft/overview/",
21+
"license": "MIT",
2422
"main": "lib/index.js",
2523
"types": "dist/heft.d.ts",
2624
"bin": {
2725
"heft": "./bin/heft"
2826
},
29-
"license": "MIT",
3027
"scripts": {
31-
"build": "heft build --clean",
32-
"start": "heft build-watch --clean",
3328
"_phase:build": "heft run --only build -- --clean",
34-
"_phase:test": "heft run --only test -- --clean"
29+
"_phase:test": "heft run --only test -- --clean",
30+
"build": "heft build --clean",
31+
"start": "heft build-watch --clean"
3532
},
3633
"dependencies": {
3734
"@rushstack/heft-config-file": "workspace:*",
@@ -53,5 +50,8 @@
5350
"@types/watchpack": "2.4.0",
5451
"decoupled-local-node-rig": "workspace:*",
5552
"eslint": "~9.37.0"
53+
},
54+
"engines": {
55+
"node": ">=10.13.0"
5656
}
5757
}

apps/lockfile-explorer-web/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
{
22
"name": "@rushstack/lockfile-explorer-web",
3-
"description": "Rush Lockfile Explorer: helper project for building the React web application component",
43
"version": "0.0.0",
54
"private": true,
5+
"description": "Rush Lockfile Explorer: helper project for building the React web application component",
66
"license": "MIT",
77
"scripts": {
8+
"_phase:build": "heft run --only build -- --clean",
9+
"_phase:test": "heft run --only test -- --clean",
810
"build": "heft test --clean",
911
"start": "heft start",
10-
"test": "heft test",
11-
"_phase:build": "heft run --only build -- --clean",
12-
"_phase:test": "heft run --only test -- --clean"
12+
"test": "heft test"
1313
},
1414
"dependencies": {
1515
"@reduxjs/toolkit": "~2.11.2",
1616
"@rushstack/rush-themed-ui": "workspace:*",
1717
"prism-react-renderer": "~2.4.1",
18+
"react": "~19.2.3",
1819
"react-dom": "~19.2.3",
1920
"react-redux": "~9.2.0",
20-
"react": "~19.2.3",
2121
"redux": "~5.0.1",
2222
"tslib": "~2.8.1"
2323
},

apps/lockfile-explorer/package.json

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
"visualize",
1818
"visualizer"
1919
],
20+
"homepage": "https://lfx.rushstack.io/",
2021
"repository": {
2122
"type": "git",
2223
"url": "https://github.com/microsoft/rushstack.git",
2324
"directory": "apps/lockfile-explorer"
2425
},
25-
"homepage": "https://lfx.rushstack.io/",
2626
"license": "MIT",
2727
"bin": {
2828
"lockfile-explorer": "./bin/lockfile-explorer",
@@ -31,36 +31,14 @@
3131
"lflint": "./bin/lockfile-lint"
3232
},
3333
"scripts": {
34+
"_phase:build": "heft run --only build -- --clean",
35+
"_phase:test": "heft run --only test -- --clean",
3436
"build": "heft build --clean",
35-
"start": "heft start",
3637
"serve": "node ./lib/start-explorer.js --debug",
37-
"test": "heft test",
38-
"_phase:build": "heft run --only build -- --clean",
39-
"_phase:test": "heft run --only test -- --clean"
40-
},
41-
"peerDependencies": {
42-
"@types/express": "^5.0.3"
43-
},
44-
"peerDependenciesMeta": {
45-
"@types/express": {
46-
"optional": true
47-
}
48-
},
49-
"devDependencies": {
50-
"@rushstack/heft": "workspace:*",
51-
"@rushstack/lockfile-explorer-web": "workspace:*",
52-
"@types/cors": "~2.8.12",
53-
"@types/express": "4.17.21",
54-
"@types/js-yaml": "4.0.9",
55-
"@types/update-notifier": "~6.0.1",
56-
"eslint": "~9.37.0",
57-
"local-node-rig": "workspace:*",
58-
"@pnpm/lockfile.types": "1002.0.1",
59-
"@pnpm/types": "1000.8.0",
60-
"@types/semver": "7.5.0"
38+
"start": "heft start",
39+
"test": "heft test"
6140
},
6241
"dependencies": {
63-
"tslib": "~2.8.1",
6442
"@microsoft/rush-lib": "workspace:*",
6543
"@pnpm/dependency-path-lockfile-pre-v9": "npm:@pnpm/dependency-path@~2.1.2",
6644
"@rushstack/node-core-library": "workspace:*",
@@ -72,6 +50,28 @@
7250
"js-yaml": "~4.1.0",
7351
"open": "~8.4.0",
7452
"semver": "~7.5.4",
53+
"tslib": "~2.8.1",
7554
"update-notifier": "~5.1.0"
55+
},
56+
"devDependencies": {
57+
"@pnpm/lockfile.types": "1002.0.1",
58+
"@pnpm/types": "1000.8.0",
59+
"@rushstack/heft": "workspace:*",
60+
"@rushstack/lockfile-explorer-web": "workspace:*",
61+
"@types/cors": "~2.8.12",
62+
"@types/express": "4.17.21",
63+
"@types/js-yaml": "4.0.9",
64+
"@types/semver": "7.5.0",
65+
"@types/update-notifier": "~6.0.1",
66+
"eslint": "~9.37.0",
67+
"local-node-rig": "workspace:*"
68+
},
69+
"peerDependencies": {
70+
"@types/express": "^5.0.3"
71+
},
72+
"peerDependenciesMeta": {
73+
"@types/express": {
74+
"optional": true
75+
}
7676
}
7777
}

apps/playwright-browser-tunnel/package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,43 +2,43 @@
22
"name": "@rushstack/playwright-browser-tunnel",
33
"version": "0.2.2",
44
"description": "Run a remote Playwright Browser Tunnel. Useful in remote development environments.",
5-
"license": "MIT",
5+
"homepage": "https://rushstack.io",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/microsoft/rushstack.git",
99
"directory": "apps/playwright-browser-tunnel"
1010
},
11+
"license": "MIT",
1112
"main": "lib/index.js",
12-
"engines": {
13-
"node": ">=20.0.0"
14-
},
15-
"engineStrict": true,
16-
"homepage": "https://rushstack.io",
1713
"scripts": {
18-
"build": "heft build --clean",
1914
"_phase:build": "heft run --only build -- --clean",
15+
"build": "heft build --clean",
2016
"demo": "playwright test --config=playwright.config.ts"
2117
},
2218
"dependencies": {
2319
"@rushstack/node-core-library": "workspace:*",
2420
"@rushstack/terminal": "workspace:*",
2521
"@rushstack/ts-command-line": "workspace:*",
26-
"string-argv": "~0.3.1",
22+
"playwright": "1.56.1",
2723
"semver": "~7.5.4",
28-
"ws": "~8.14.1",
29-
"playwright": "1.56.1"
24+
"string-argv": "~0.3.1",
25+
"ws": "~8.14.1"
3026
},
3127
"devDependencies": {
28+
"@playwright/test": "~1.56.1",
3229
"@rushstack/heft": "workspace:*",
33-
"eslint": "~9.37.0",
34-
"local-node-rig": "workspace:*",
30+
"@types/node": "20.17.19",
3531
"@types/semver": "7.5.0",
3632
"@types/ws": "8.5.5",
37-
"playwright-core": "~1.56.1",
38-
"@playwright/test": "~1.56.1",
39-
"@types/node": "20.17.19"
33+
"eslint": "~9.37.0",
34+
"local-node-rig": "workspace:*",
35+
"playwright-core": "~1.56.1"
4036
},
4137
"peerDependencies": {
4238
"playwright-core": "~1.56.1"
43-
}
39+
},
40+
"engines": {
41+
"node": ">=20.0.0"
42+
},
43+
"engineStrict": true
4444
}

apps/rundown/package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,20 @@
22
"name": "@rushstack/rundown",
33
"version": "1.2.13",
44
"description": "Detect load time regressions by running an app, tracing require() calls, and generating a deterministic report",
5+
"homepage": "https://rushstack.io",
56
"repository": {
67
"type": "git",
78
"url": "https://github.com/microsoft/rushstack.git",
89
"directory": "apps/rundown"
910
},
10-
"engines": {
11-
"node": ">=10.0.0"
12-
},
13-
"engineStrict": true,
14-
"homepage": "https://rushstack.io",
15-
"scripts": {
16-
"build": "heft build --clean",
17-
"_phase:build": "heft run --only build -- --clean"
18-
},
11+
"license": "MIT",
1912
"bin": {
2013
"rundown": "./bin/rundown"
2114
},
22-
"license": "MIT",
15+
"scripts": {
16+
"_phase:build": "heft run --only build -- --clean",
17+
"build": "heft build --clean"
18+
},
2319
"dependencies": {
2420
"@rushstack/node-core-library": "workspace:*",
2521
"@rushstack/ts-command-line": "workspace:*",
@@ -29,5 +25,9 @@
2925
"@rushstack/heft": "workspace:*",
3026
"eslint": "~9.37.0",
3127
"local-node-rig": "workspace:*"
32-
}
28+
},
29+
"engines": {
30+
"node": ">=10.0.0"
31+
},
32+
"engineStrict": true
3333
}

apps/rush-mcp-server/package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -9,39 +9,39 @@
99
"monorepo",
1010
"server"
1111
],
12-
"main": "lib/index.js",
13-
"typings": "dist/mcp-server.d.ts",
12+
"homepage": "https://rushstack.io",
1413
"repository": {
1514
"type": "git",
1615
"url": "https://github.com/microsoft/rushstack.git",
1716
"directory": "apps/rush-mcp-server"
1817
},
19-
"engines": {
20-
"node": ">=10.0.0"
21-
},
22-
"engineStrict": true,
23-
"homepage": "https://rushstack.io",
24-
"scripts": {
25-
"build": "heft build --clean",
26-
"_phase:build": "heft run --only build -- --clean"
27-
},
18+
"license": "MIT",
19+
"main": "lib/index.js",
20+
"typings": "dist/mcp-server.d.ts",
2821
"bin": {
2922
"mcp-server": "./bin/mcp-server"
3023
},
31-
"license": "MIT",
24+
"scripts": {
25+
"_phase:build": "heft run --only build -- --clean",
26+
"build": "heft build --clean"
27+
},
3228
"dependencies": {
29+
"@modelcontextprotocol/sdk": "~1.10.2",
3330
"@rushstack/node-core-library": "workspace:*",
34-
"@rushstack/terminal": "workspace:*",
3531
"@rushstack/rush-sdk": "workspace:*",
32+
"@rushstack/terminal": "workspace:*",
3633
"@rushstack/ts-command-line": "workspace:*",
37-
"@modelcontextprotocol/sdk": "~1.10.2",
3834
"zod": "~3.25.76"
3935
},
4036
"devDependencies": {
4137
"@rushstack/heft": "workspace:*",
38+
"@types/node": "20.17.19",
4239
"eslint": "~9.37.0",
4340
"local-node-rig": "workspace:*",
44-
"typescript": "~5.8.2",
45-
"@types/node": "20.17.19"
46-
}
41+
"typescript": "~5.8.2"
42+
},
43+
"engines": {
44+
"node": ">=10.0.0"
45+
},
46+
"engineStrict": true
4747
}

0 commit comments

Comments
 (0)