-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.54 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@hearchco/sveltekit-adapter-aws",
"version": "0.1.13",
"description": "SvelteKit AWS universal adapter for creating necessary assets and code which can later be deployed using a custom IaC pipeline",
"repository": {
"type": "git",
"url": "https://github.com/hearchco/sveltekit-adapter-aws",
"directory": "."
},
"main": "index.js",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
},
"./handler": {
"types": "./handler/index.d.ts",
"import": "./handler/index.js"
},
"./cloudfront": {
"types": "./cloudfront/index.d.ts",
"import": "./cloudfront/index.js"
},
"./package.json": "./package.json"
},
"types": "index.d.ts",
"files": [
"files",
"index.js",
"utils.js",
"index.d.ts"
],
"scripts": {
"build": "npx tsc",
"lint": "eslint .",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check": "tsc"
},
"keywords": [
"sveltekit",
"adapter",
"aws"
],
"author": "Hearchco",
"license": "Apache-2.0",
"dependencies": {
"aws-sdk": "^2.1692.0",
"esbuild": "^0.24.0"
},
"devDependencies": {
"@sveltejs/kit": "^2.9.0",
"@types/aws-lambda": "^8.10.146",
"@types/node": "22.10.1",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.6.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"typescript": "5.7.2"
},
"peerDependencies": {
"@sveltejs/kit": "^2.0.0"
}
}