-
Notifications
You must be signed in to change notification settings - Fork 681
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.16 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.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
{
"name": "@rushstack/rush-serve-plugin",
"version": "5.172.1",
"description": "A Rush plugin that hooks into a rush action and serves output folders from all projects in the repository.",
"license": "MIT",
"repository": {
"url": "https://github.com/microsoft/rushstack.git",
"type": "git",
"directory": "rush-plugins/rush-serve-plugin"
},
"main": "./lib-commonjs/index.js",
"module": "./lib-esm/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "heft test --clean",
"_phase:build": "heft run --only build -- --clean",
"_phase:test": "heft run --only test -- --clean"
},
"dependencies": {
"@rushstack/debug-certificate-manager": "workspace:*",
"@rushstack/heft-config-file": "workspace:*",
"@rushstack/node-core-library": "workspace:*",
"@rushstack/rig-package": "workspace:*",
"@rushstack/rush-sdk": "workspace:*",
"@rushstack/ts-command-line": "workspace:*",
"compression": "~1.7.4",
"cors": "~2.8.5",
"express": "4.21.1",
"http2-express-bridge": "~1.0.7",
"ws": "~8.14.1"
},
"devDependencies": {
"@rushstack/heft": "workspace:*",
"@rushstack/terminal": "workspace:*",
"eslint": "~9.37.0",
"local-node-rig": "workspace:*",
"@types/compression": "~1.7.2",
"@types/cors": "~2.8.12",
"@types/express": "4.17.21",
"@types/ws": "8.5.5"
},
"exports": {
".": {
"types": "./dist/rush-serve-plugin.d.ts",
"node": "./lib-commonjs/index.js",
"import": "./lib-esm/index.js",
"require": "./lib-commonjs/index.js"
},
"./api": {
"types": "./lib-dts/api.types.d.ts"
},
"./lib/*.schema.json": "./lib-commonjs/*.schema.json",
"./lib/*": {
"types": "./lib-dts/*.d.ts",
"node": "./lib-commonjs/*.js",
"import": "./lib-esm/*.js",
"require": "./lib-commonjs/*.js"
},
"./rush-plugin-manifest.json": "./rush-plugin-manifest.json",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
".": [
"dist/rush-serve-plugin.d.ts"
],
"api": [
"lib-dts/api.types.d.ts"
],
"lib/*": [
"lib-dts/*"
]
}
},
"sideEffects": false
}