-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathpackage.json
48 lines (48 loc) · 1.02 KB
/
package.json
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
{
"name": "@remix-run/architect",
"version": "2.11.1-pre.0",
"description": "Architect server request handler for Remix",
"bugs": {
"url": "https://github.com/remix-run/remix/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/remix-run/remix",
"directory": "packages/remix-architect"
},
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"tsc": "tsc"
},
"dependencies": {
"@architect/functions": "^5.2.0",
"@remix-run/node": "workspace:*",
"@remix-run/web-fetch": "^4.4.2",
"@types/aws-lambda": "^8.10.82"
},
"devDependencies": {
"@types/lambda-tester": "^3.6.1",
"@types/node": "^18.17.1",
"lambda-tester": "^4.0.1",
"typescript": "^5.1.0"
},
"peerDependencies": {
"typescript": "^5.1.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
]
}