-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.86 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.86 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "kit-on-lambda",
"version": "0.3.0",
"description": "SvelteKit adapter for AWS Lambda for Node.js and Bun runtimes",
"repository": {
"url": "git+ssh://git@github.com/BeeSolve/kit-on-lambda.git",
"type": "git"
},
"author": {
"name": "Ivan Barlog",
"email": "ivan.barlog@beesolve.com"
},
"keywords": [
"adapter",
"svelte",
"sveltekit",
"aws",
"lambda",
"nodejs",
"bun",
"cdk"
],
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/esb.d.ts",
"import": "./dist/esb.js"
},
"./bun": {
"types": "./dist/bun.d.ts",
"import": "./dist/bun.js"
},
"./cdk": {
"types": "./dist/cdk.d.ts",
"import": "./dist/cdk.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"publishConfig": {
"provenance": true
},
"scripts": {
"test": "bun test",
"prepublishOnly": "bun --bun run build.ts",
"version": "changeset version",
"release": "bun run prepublishOnly && changeset publish",
"integ:deploy-test-destroy": "RUN_AWS_INTEG=1 bun test test/integration/deploy-destroy.test.ts",
"integ:cleanup": "bash scripts/integ-cleanup.sh",
"integ:local": "LOCAL_INTEG=1 bun test test/integration/local.test.ts"
},
"peerDependencies": {
"@sveltejs/kit": "^2.60.1",
"aws-cdk": "^2.1122.0",
"aws-cdk-lib": "^2.254.0",
"constructs": "^10.6.0"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@types/aws-lambda": "^8.10.161",
"@types/bun": "^1.3.14",
"@types/node": "^25.9.0",
"bun-dts": "^0.1.70",
"esbuild": "^0.28.0",
"typescript": "^6.0.3"
},
"dependencies": {
"@beesolve/lambda-bun-runtime": "^2.103.14",
"@beesolve/lambda-fetch-api": "^1.0.0",
"@beesolve/lambda-keep-active": "^1.3.0"
}
}