-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "@tessellator/sveltekit-adapter-lambda",
"description": "Adapter for SvelteKit applications that generates a handler for use on AWS Lambda",
"version": "0.1.1",
"repository": {
"type": "git",
"url": "https://github.com/tessellator/sveltekit-adapter-lambda.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
},
"./package.json": "./package.json"
},
"main": "index.js",
"types": "index.d.ts",
"files": [
"files",
"index.d.ts"
],
"scripts": {
"dev": "rimraf files && rollup -cw",
"build": "rimraf files && rollup -c",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@sveltejs/kit": "^1.0.1",
"@types/node": "^18.11.16",
"@types/polka": "^0.5.4",
"@types/set-cookie-parser": "^2.4.2",
"@vendia/serverless-express": "^4.10.1",
"express": "^4.18.2",
"mrmime": "^1.0.1",
"polka": "^0.5.2",
"rimraf": "^3.0.2",
"set-cookie-parser": "^2.5.1",
"sirv": "^2.0.2",
"typescript": "^4.9.4"
},
"dependencies": {
"@rollup/plugin-commonjs": "^23.0.5",
"@rollup/plugin-json": "^5.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"rollup": "^3.7.5"
}
}