-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.25 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
{
"name": "@nrfcloud/cdktf-aws-adaptor",
"version": "0.10.2",
"description": "A compatibility layer for using the CDK for Terraform with AWS CDK constructs",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"typescript",
"cdktf",
"awscdk",
"cdk",
"aws"
],
"engines": {
"node": ">=18.0.0"
},
"licenses": [
{
"type": "MIT"
}
],
"files": [
"dist",
"!dist/__tests__",
"!dist/tsconfig.tsbuildinfo",
"package.json",
"README.md",
"CHANGELOG.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"repository": "https://github.com/nRFCloud/ts-json-schema-transformer",
"scripts": {
"prepare": "husky install",
"lint": "dprint check && eslint --cache .",
"lint:fix": "dprint fmt && eslint --cache --fix .",
"clean": "rm -rf dist && rm -rf tests/dist && rm -rf src/generated",
"compile": "tsc",
"test": "vitest --reporter=junit --reporter=basic --outputFile.junit=coverage/junit.xml",
"release": "pnpm clean && pnpm build && pnpm lint && changeset publish",
"update-cc-supported": "node scripts/update-cc-supported.js",
"build": "pnpm compile"
},
"author": "John Conley",
"license": "MIT",
"devDependencies": {
"@aws-sdk/client-cloudformation": "^3.515.0",
"@cdktf/provider-aws": "^19.33.0",
"@changesets/cli": "^2.27.1",
"@eslint/js": "^8.56.0",
"@types/debug": "^4.1.12",
"@types/node": "^18.19.17",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^2.1.0",
"aws-cdk-lib": "^2.158.0",
"cdktf": "^0.20.8",
"cdktf-cli": "^0.18.2",
"constructs": "^10.3.0",
"dprint": "^0.35.4",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"type-fest": "^4.10.2",
"typescript": "^5.3.3",
"vitest": "^2.1.0"
},
"peerDependencies": {
"@cdktf/provider-aws": ">=19.32.0",
"aws-cdk-lib": ">=2.153.0",
"cdktf": "^0.20.4",
"constructs": "^10.2.69"
},
"dependencies": {
"camel-case": "^4.1.2",
"codemaker": "^1.94.0",
"debug": "^4.3.4",
"minimatch": "^10.0.1",
"yargs": "^17.7.2",
"@cdktf/provider-archive": "10.2.0"
}
}