-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.06 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
{
"name": "remix-aws",
"version": "1.2.2",
"description": "AWS adapter for Remix",
"bugs": {
"url": "https://github.com/wingleung/remix-aws/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wingleung/remix-aws.git"
},
"scripts": {
"build": "tsup --publicDir templates"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"dependencies": {
"@types/aws-lambda": "^8.10.125"
},
"devDependencies": {
"@types/node": "^18.18.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.7.1",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@remix-run/dev": "^1.6.2 || ^2.0.1",
"@remix-run/node": "^1.6.2 || ^2.0.1",
"esbuild": "^0.17.6"
},
"engines": {
"node": ">=18"
},
"files": [
"dist/",
"LICENSE.md",
"README.md"
]
}