-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.44 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
{
"name": "crd-to-cdktf",
"version": "0.1.3",
"description": "Turn Kubernetes Custom Resource Definitions (CRDs) into typesafe CDKTF constructs",
"keywords": [
"kubernetes",
"cdktf",
"terraform",
"cdk",
"crd",
"openapi",
"typescript"
],
"homepage": "https://github.com/ZauberNerd/crd-to-cdktf",
"license": "MIT",
"author": "Björn Brauer <[email protected]>",
"type": "module",
"files": [
"src",
"types"
],
"exports": {
".": {
"types": "./types/main.d.ts",
"import": "./src/main.js"
}
},
"bin": {
"crd-to-cdktf": "src/bin.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ZauberNerd/crd-to-cdktf.git"
},
"scripts": {
"build": "tsc",
"fmt": "prettier --write .",
"test": "node --test",
"bundle": "node scripts/bundle.js"
},
"dependencies": {
"js-yaml": "^4.1.0",
"openapi-typescript": "^7.0.0-rc.0"
},
"devDependencies": {
"@cdktf/provider-kubernetes": "^11.6.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.14.2",
"esbuild": "^0.21.5",
"postject": "^1.0.0-alpha.6",
"prettier": "^3.3.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@cdktf/provider-kubernetes": "^11.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.12.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org",
"provenance": true
}
}