-
-
Notifications
You must be signed in to change notification settings - Fork 10.8k
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.6 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.6 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": "@react-router/express",
"type": "module",
"version": "7.13.2",
"description": "Express server request handler for React Router",
"bugs": {
"url": "https://github.com/remix-run/react-router/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/remix-run/react-router",
"directory": "packages/react-router-express"
},
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"module-sync": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "wireit",
"typecheck": "tsc"
},
"wireit": {
"build": {
"command": "tsup",
"files": [
"../../pnpm-workspace.yaml",
"*.ts",
"tsconfig.json",
"package.json"
],
"output": [
"dist/**"
]
}
},
"dependencies": {
"@react-router/node": "workspace:*"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/node": "^20.0.0",
"@types/supertest": "^2.0.10",
"express": "^4.19.2",
"node-mocks-http": "^1.10.1",
"supertest": "^6.3.3",
"tsup": "catalog:",
"typescript": "catalog:",
"wireit": "catalog:"
},
"peerDependencies": {
"express": "^4.17.1 || ^5",
"react-router": "workspace:*",
"typescript": "^5.1.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"engines": {
"node": ">=22.12.0"
},
"files": [
"dist/",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
]
}