-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.42 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
{
"name": "serverless-exports-plugin",
"version": "1.3.1",
"description": "Serverless Framework plugin to export Environment variables and CloudFormation outputs to a file",
"main": "dist/index.js",
"packageManager": "[email protected]",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zirkelc/serverless-exports-plugin.git"
},
"scripts": {
"start": "localstack start",
"test": "vitest run",
"prepublishOnly": "pnpm build",
"build": "rm -rf /dist && tsc",
"watch": "tsc -w",
"lint": "pnpm biome check --write --no-errors-on-unmatched ."
},
"keywords": [
"serverless",
"framework",
"plugin",
"export",
"environment",
"stack",
"outputs",
"env",
"json",
"toml",
"yaml"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@aws-sdk/types": "^3.391.0",
"@serverless/utils": "^6.13.1",
"@types/aws-sdk": "^2.7.0",
"@types/node": "^20.5.0",
"@types/serverless": "^3.12.14",
"aws-sdk": "^2.1437.0",
"execa": "^7.2.0",
"js-yaml": "^4.1.0",
"json-schema-to-ts": "^2.9.2",
"lodash": "^4.17.21",
"@biomejs/biome": "1.9.3",
"serverless": "^3.34.0",
"serverless-localstack": "^1.1.1",
"typescript": "^5.1.6",
"vitest": "^0.34.1"
},
"dependencies": {
"chalk": "^4.0.0"
},
"peerDependencies": {
"serverless": "^3.0.0 || ^4.0.0"
}
}