-
-
Notifications
You must be signed in to change notification settings - Fork 380
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 4.26 KB
/
Copy pathpackage.json
File metadata and controls
136 lines (136 loc) · 4.26 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
133
134
135
136
{
"name": "webpack-dev-middleware",
"version": "8.3.0",
"description": "A development middleware for webpack",
"keywords": [
"webpack",
"middleware",
"development"
],
"homepage": "https://github.com/webpack/webpack-dev-middleware",
"bugs": "https://github.com/webpack/webpack-dev-middleware/issues",
"repository": "webpack/webpack-dev-middleware",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"license": "MIT",
"author": "Tobias Koppers @sokra",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./dist/index.js"
},
"./client": "./client/index.js",
"./client/sse": "./client/clients/EventSourceClient.js",
"./client/ws": "./client/clients/WebSocketClient.js",
"./client/indicator": "./client/indicator.js",
"./client/overlay": "./client/overlay.js",
"./package.json": "./package.json"
},
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"client",
"dist",
"types"
],
"scripts": {
"lint:prettier": "prettier --cache --list-different .",
"lint:code": "eslint --cache .",
"lint:spelling": "cspell --cache --no-must-find-files --quiet \"**/*.*\"",
"lint:types": "tsc --pretty --noEmit",
"lint:types-client": "tsc -p tsconfig.client.json --pretty",
"lint": "npm-run-all -l -p \"lint:**\"",
"fix:js": "npm run lint:code -- --fix",
"fix:prettier": "npm run lint:prettier -- --write",
"fix": "npm-run-all -l fix:js fix:schema-check fix:prettier",
"clean": "del-cli client dist types",
"prebuild": "npm run clean",
"build:types": "tsc && prettier \"types/**/*.ts\" --write",
"build:code": "babel src -d dist --copy-files",
"build:client": "babel client-src -d client --copy-files",
"build": "npm-run-all -p \"build:**\"",
"test:only": "node --experimental-vm-modules ./node_modules/jest-cli/bin/jest",
"test:e2e": "node --experimental-vm-modules ./node_modules/jest-cli/bin/jest test/e2e --runInBand",
"test:watch": "npm run test:only -- --watch",
"test:coverage": "npm run test:only -- --coverage",
"pretest": "npm run lint",
"test": "npm-run-all -s test:coverage test:e2e",
"prepare": "husky && npm run build",
"version": "changeset version",
"release": "npm run build && changeset publish",
"coverage:client": "node test/helpers/merge-coverage.js",
"lint:schema-check": "node ./scripts/generate-schema-check.mjs --check",
"fix:schema-check": "node ./scripts/generate-schema-check.mjs"
},
"dependencies": {
"ansi-html-community": "^0.0.8",
"memfs": "^4.68.2",
"mime-types": "^3.0.2",
"range-parser": "^1.3.0",
"schema-utils": "^4.3.3"
},
"devDependencies": {
"@babel/cli": "^8.0.6",
"@babel/core": "^8.0.6",
"@babel/preset-env": "^8.0.6",
"@changesets/cli": "^3.0.1",
"@changesets/get-github-info": "^1.0.0",
"@fastify/express": "^4.0.7",
"@hapi/hapi": "^21.4.10",
"@hono/node-server": "^2.1.1",
"@types/connect": "^3.4.38",
"@types/express": "^5.0.6",
"@types/mime-types": "^3.0.1",
"@types/node": "^26.4.1",
"@types/ws": "^8.18.1",
"acorn": "^8.18.0",
"ajv": "^8.20.0",
"babel-jest": "^30.1.2",
"babel-loader": "^10.1.1",
"babel-plugin-istanbul": "^8.0.0",
"connect": "^3.7.0",
"cspell": "^10.2.0",
"deepmerge": "^4.3.1",
"del-cli": "^7.0.0",
"eslint": "^9.39.5",
"eslint-config-webpack": "^4.9.6",
"execa": "^9.6.1",
"express": "^5.2.1",
"express-4": "npm:express@^4.22.2",
"fastify": "^5.12.1",
"file-loader": "^6.2.0",
"finalhandler": "^2.1.1",
"hono": "^4.13.5",
"husky": "^9.1.7",
"istanbul-lib-coverage": "^3.2.2",
"istanbul-lib-report": "^3.0.1",
"istanbul-reports": "^3.2.0",
"jest": "^30.5.1",
"koa": "^3.2.1",
"lint-staged": "^17.4.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.9.6",
"puppeteer": "^25.11.0",
"router": "^2.2.0",
"supertest": "^7.2.2",
"typescript": "^6.0.3",
"webpack": "^5.110.3",
"ws": "^8.18.3"
},
"peerDependencies": {
"webpack": "^5.101.0"
},
"peerDependenciesMeta": {
"webpack": {
"optional": true
}
},
"optionalDependencies": {
"ws": "^8.18.3"
},
"engines": {
"node": ">= 20.9.0"
}
}