-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.34 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.34 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
{
"name": "lambda-extension-service",
"version": "0.0.2",
"author": "corentindoue",
"license": "MIT",
"repository": "CorentinDoue/lambda-extension-service.git",
"keywords": [
"AWS",
"Lambda",
"Extension"
],
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"package": "pnpm clean && pnpm package-transpile && pnpm package-types && pnpm package-types-aliases",
"package-transpile": "tsup",
"package-types": "tsc -p tsconfig.build.json",
"package-types-aliases": "tsc-alias -p tsconfig.build.json",
"watch": "pnpm clean dist && concurrently 'pnpm:package-* --watch'"
},
"devDependencies": {
"@types/node": "^18.15.0",
"@vitest/coverage-c8": "0.30.0",
"aws-cdk-lib": "^2.68.0",
"concurrently": "^7.6.0",
"constructs": "^10.1.187",
"dependency-cruiser": "^12.10.0",
"eslint": "^8.35.0",
"json-schema-to-ts": "^2.7.2",
"prettier": "^2.8.4",
"rimraf": "^4.4.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.3",
"tsup": "^6.6.3",
"typescript": "^5.0.0",
"vite": "^4.1.4",
"vite-tsconfig-paths": "^4.0.5",
"vitest": "0.30.0"
},
"dependencies": {
"node-fetch": "^3.3.1"
}
}