-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "@kubernetes-models/nats",
"version": "0.2.2",
"description": "NATS 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/nats",
"author": "Yz C <[email protected]>",
"license": "MIT",
"main": "index.js",
"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",
"nats"
],
"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://github.com/nats-io/nack/releases/download/v0.14.0/crds.yml"
],
"output": "./gen"
}
}