-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 630 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 630 Bytes
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
{
"name": "vite-plugin-aws-lambda",
"description": "Helper for building AWS lambda function with Vite.",
"version": "1.0.4",
"license": "ISC",
"repository": {
"type": "git",
"url": "Shakeskeyboarde/vite-plugin-aws-lambda",
"directory": "packages/plugin"
},
"scripts": {
"build": "tsc -p src/tsconfig.json"
},
"type": "module",
"files": [
"lib"
],
"types": "./lib/index.d.ts",
"exports": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"dependencies": {
"jszip": "^3.10.1"
},
"peerDependencies": {
"vite": ">=5.2.7"
}
}