-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
67 lines (67 loc) · 3.42 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
{
"name": "@kubernetes-models/traefik",
"version": "0.2.2",
"description": "Traefik models",
"repository": {
"type": "git",
"url": "https://github.com/tommy351/kubernetes-models-ts.git"
},
"homepage": "https://github.com/tommy351/kubernetes-models-ts/tree/master/third-party/traefik",
"author": "Stanley <shorwood> Horwood",
"license": "MIT",
"main": "index.cjs",
"module": "index.mjs",
"types": "index.d.ts",
"sideEffects": false,
"scripts": {
"build": "crd-generate && publish-scripts build",
"prepack": "publish-scripts prepack"
},
"publishConfig": {
"access": "public",
"directory": "dist",
"linkDirectory": true
},
"keywords": [
"kubernetes",
"kubernetes-models",
"traefik"
],
"engines": {
"node": ">=14"
},
"dependencies": {
"@kubernetes-models/apimachinery": "workspace:^",
"@kubernetes-models/base": "workspace:^",
"@kubernetes-models/validate": "workspace:^",
"@swc/helpers": "^0.5.8"
},
"devDependencies": {
"@kubernetes-models/crd-generate": "workspace:^",
"@kubernetes-models/publish-scripts": "workspace:^",
"vitest": "^0.29.8"
},
"crd-generate": {
"input": [
"https://raw.githubusercontent.com/traefik/traefik-helm-chart/v25.0.0/traefik/crds/traefik.containo.us_ingressroutes.yaml",
"https://raw.githubusercontent.com/traefik/traefik-helm-chart/v25.0.0/traefik/crds/traefik.containo.us_ingressroutetcps.yaml",
"https://raw.githubusercontent.com/traefik/traefik-helm-chart/v25.0.0/traefik/crds/traefik.containo.us_ingressrouteudps.yaml",
"https://raw.githubusercontent.com/traefik/traefik-helm-chart/v25.0.0/traefik/crds/traefik.containo.us_middlewares.yaml",
"https://raw.githubusercontent.com/traefik/traefik-helm-chart/v25.0.0/traefik/crds/traefik.containo.us_middlewaretcps.yaml",
"https://raw.githubusercontent.com/traefik/traefik-helm-chart/v25.0.0/traefik/crds/traefik.containo.us_serverstransports.yaml",
"https://raw.githubusercontent.com/traefik/traefik-helm-chart/v25.0.0/traefik/crds/traefik.containo.us_tlsoptions.yaml",
"https://raw.githubusercontent.com/traefik/traefik-helm-chart/v25.0.0/traefik/crds/traefik.containo.us_tlsstores.yaml",
"https://raw.githubusercontent.com/traefik/traefik-helm-chart/v25.0.0/traefik/crds/traefik.containo.us_traefikservices.yaml",
"https://raw.githubusercontent.com/traefik/traefik-helm-chart/v25.0.0/traefik/crds/traefik.io_ingressroutes.yaml",
"https://raw.githubusercontent.com/traefik/traefik-helm-chart/v25.0.0/traefik/crds/traefik.io_ingressroutetcps.yaml",
"https://raw.githubusercontent.com/traefik/traefik-helm-chart/v25.0.0/traefik/crds/traefik.io_ingressrouteudps.yaml",
"https://raw.githubusercontent.com/traefik/traefik-helm-chart/v25.0.0/traefik/crds/traefik.io_middlewares.yaml",
"https://raw.githubusercontent.com/traefik/traefik-helm-chart/v25.0.0/traefik/crds/traefik.io_middlewaretcps.yaml",
"https://raw.githubusercontent.com/traefik/traefik-helm-chart/v25.0.0/traefik/crds/traefik.io_serverstransports.yaml",
"https://raw.githubusercontent.com/traefik/traefik-helm-chart/v25.0.0/traefik/crds/traefik.io_tlsoptions.yaml",
"https://raw.githubusercontent.com/traefik/traefik-helm-chart/v25.0.0/traefik/crds/traefik.io_tlsstores.yaml",
"https://raw.githubusercontent.com/traefik/traefik-helm-chart/v25.0.0/traefik/crds/traefik.io_traefikservices.yaml"
],
"output": "./gen"
}
}