-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.72 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.72 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
86
87
88
89
90
91
92
93
94
95
{
"name": "@refactorthis/funcy",
"version": "0.0.3",
"description": "**funcy** provides a simple, strongly typed, and comprehensive toolkit for AWS lambda.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"readme.md",
"package.json",
"LICENSE",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"preinstall": "npx -y only-allow pnpm",
"build": "tsup ./package/index.ts --format cjs,esm --dts",
"test": "vitest run --coverage",
"test:watch": "vitest --ui",
"lint": "eslint --cache ./package && prettier --check .",
"format": "prettier --write --cache .",
"ci": "pnpm run lint && pnpm run test && pnpm run build",
"prepare": "husky",
"commitlint": "commitlint --edit"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@tsconfig/node20": "^20.1.4",
"@types/aws-lambda": "^8.10.143",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^20.16.1",
"@vitest/coverage-istanbul": "^1.6.0",
"@vitest/ui": "^1.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.5",
"prettier": "^3.3.3",
"semantic-release": "^24.1.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^7.18.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0",
"yup": "^1.4.0",
"zod": "^3.23.8"
},
"dependencies": {
"@middy/cloudwatch-metrics": "^5.4.6",
"@middy/core": "^5.4.6",
"@middy/error-logger": "^5.4.6",
"@middy/http-content-encoding": "^5.4.6",
"@middy/http-content-negotiation": "^5.4.6",
"@middy/http-cors": "^5.4.6",
"@middy/http-error-handler": "^5.4.6",
"@middy/http-event-normalizer": "^5.4.6",
"@middy/http-header-normalizer": "^5.4.6",
"@middy/http-json-body-parser": "^5.4.6",
"@middy/http-multipart-body-parser": "^5.4.6",
"@middy/http-response-serializer": "^5.4.6",
"@middy/http-security-headers": "^5.4.6",
"@middy/http-urlencode-body-parser": "^5.4.6",
"@middy/http-urlencode-path-parser": "^5.4.6",
"@middy/input-output-logger": "^5.4.6",
"@middy/util": "^5.4.6",
"@middy/warmup": "^5.4.6",
"lodash.merge": "^4.6.2"
},
"engines": {
"node": ">=14"
},
"keywords": [
"aws",
"lambda",
"typescript",
"serverless"
],
"author": "refactorthis",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/refactorthis/funcy.git"
},
"bugs": {
"url": "https://github.com/refactorthis/funcy/issues"
},
"homepage": "https://github.com/refactorthis/funcy#readme",
"workspaces": [
"examples/**/*"
]
}