-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.14 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
77
78
79
80
81
82
83
84
85
{
"name": "kit-on-lambda",
"version": "0.6.0",
"description": "SvelteKit adapter for AWS Lambda for Node.js and Bun runtimes",
"keywords": [
"adapter",
"aws",
"bun",
"cdk",
"lambda",
"nodejs",
"svelte",
"sveltekit"
],
"license": "MIT",
"author": {
"name": "Ivan Barlog",
"email": "ivan.barlog@beesolve.com"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/BeeSolve/kit-on-lambda.git"
},
"files": [
"dist"
],
"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"
},
"publishConfig": {
"provenance": true
},
"scripts": {
"test": "bun test",
"lint": "oxlint .",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"check": "oxfmt --check && oxlint .",
"prepare": "husky",
"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"
},
"dependencies": {
"@beesolve/lambda-bun-runtime": "^3.10314.0",
"@beesolve/lambda-fetch-api": "^1.0.2",
"@beesolve/lambda-keep-active": "^2.0.0"
},
"devDependencies": {
"@beesolve/lint-config": "^0.2.4",
"@changesets/cli": "^2.31.0",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@types/aws-lambda": "^8.10.162",
"@types/bun": "^1.3.14",
"@types/node": "^26.1.0",
"@typescript/native-preview": "^7.0.0-dev.20260702.3",
"esbuild": "^0.28.1",
"husky": "^9.1.7",
"nano-staged": "^1.0.2",
"oxfmt": "^0.57.0",
"oxlint": "^1.72.0",
"typescript": "^6.0.3"
},
"peerDependencies": {
"@sveltejs/kit": "^2.68.0",
"aws-cdk-lib": "^2.260.0",
"constructs": "^10.6.0"
}
}