-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.07 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
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
{
"name": "lambda-init",
"version": "0.0.1",
"description": "Make AWS Lambda initialization easier with TypeScript/JavaScript",
"license": "MIT",
"homepage": "https://github.com/DManavi/lambda_init#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/DManavi/lambda_init.git"
},
"bugs": {
"url": "https://github.com/DManavi/lambda_init/issues"
},
"author": {
"name": "Danial Manavi",
"email": "me@dmanavi.com",
"url": "https://dmanavi.com"
},
"keywords": [
"lambda",
"aws-lambda",
"init",
"bootstrap",
"initialize",
"wrapper",
"async",
"async-lambda",
"typescript"
],
"nx": {
"includedScripts": []
},
"pnpm": {
"ignoredBuiltDependencies": [
"@swc/core",
"esbuild",
"nx"
]
},
"dependencies": {
"tslib": "^2.3.0"
},
"peerDependencies": {
"debug": "^4.4.0",
"error-lib": "^2.0.2"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@nx/eslint": "19.8.14",
"@nx/eslint-plugin": "19.8.14",
"@nx/js": "19.8.14",
"@nx/rollup": "19.8.14",
"@nx/vite": "19.8.14",
"@nx/web": "19.8.14",
"@nx/workspace": "19.8.14",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/debug": "^4.1.12",
"@types/node": "18.16.9",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.3.1",
"debug": "^4.4.0",
"error-lib": "^2.0.2",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.0.0",
"jsonc-eslint-parser": "^2.4.0",
"nx": "19.8.14",
"prettier": "^2.6.2",
"tslib": "^2.3.0",
"tsup": "^8.4.0",
"typedoc": "^0.27.9",
"typescript": "~5.5.2",
"typescript-eslint": "^8.0.0",
"vite": "^5.0.0",
"vitest": "^1.3.1"
},
"type": "commonjs",
"main": "./index.cjs",
"module": "./index.mjs",
"typings": "./index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./index.mjs",
"default": "./index.cjs"
},
"./*": {
"import": "./*.mjs",
"default": "./*.cjs"
}
}
}