-
-
Notifications
You must be signed in to change notification settings - Fork 10.9k
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.76 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
{
"name": "@react-router/architect",
"type": "module",
"version": "8.3.0",
"description": "Architect 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-architect"
},
"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": "tsdown",
"files": [
"../../pnpm-workspace.yaml",
"sessions/**",
"*.ts",
"tsconfig.json",
"package.json"
],
"output": [
"dist/**"
]
}
},
"dependencies": {
"@architect/functions": "^8.1.9",
"@types/aws-lambda": "^8.10.161"
},
"devDependencies": {
"@react-router/node": "workspace:*",
"@types/jest": "^30.0.0",
"@types/lambda-tester": "^4.0.3",
"@types/node": "^22.19.19",
"lambda-tester": "^4.0.1",
"react": "catalog:",
"react-dom": "catalog:",
"react-router": "workspace:*",
"tsdown": "catalog:",
"typescript": "catalog:",
"wireit": "catalog:"
},
"peerDependencies": {
"@react-router/node": "workspace:^",
"react-router": "workspace:^",
"typescript": "^5.1.0 || ^6.0.0 || ^7.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"engines": {
"node": ">=22.22.0"
},
"files": [
"dist/",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
]
}