-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.29 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.29 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
{
"name": "react-router-lambda-adapter",
"version": "0.1.1",
"description": "A React Router adapter for AWS Lambda",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"scripts": {
"build": "rm -rf dist && tsup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sjparsons/react-router-lambda-adapter.git"
},
"keywords": [
"react",
"router",
"lambda",
"aws"
],
"author": "Sam Parsons",
"license": "MIT",
"bugs": {
"url": "https://github.com/sjparsons/react-router-lambda-adapter/issues"
},
"homepage": "https://github.com/sjparsons/react-router-lambda-adapter",
"dependencies": {
"@react-router/node": "^7.1.5",
"@types/aws-lambda": "^8.10.147",
"esbuild": "^0.25.0",
"react-router": "^7.1.5",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
},
".": {
"node": {
"types": "./dist/index.d.ts",
"module-sync": "./dist/index.mjs",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@types/node": "^22.13.4"
}
}