-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.3 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
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
{
"name": "@kubernetes-models/monorepo",
"version": "0.0.0",
"private": true,
"description": "Kubernetes models",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/tommy351/kubernetes-models-ts.git"
},
"homepage": "https://github.com/tommy351/kubernetes-models-ts",
"author": "Tommy Chen <tommy351@gmail.com>",
"license": "MIT",
"keywords": [
"kubernetes"
],
"scripts": {
"lint": "npm-run-all lint:*",
"lint:eslint": "eslint .",
"lint:syncpack": "syncpack lint",
"build": "turbo run build --concurrency 4",
"clean": "pnpm -r --filter '!@kubernetes-models/monorepo' exec -- rm -rf dist gen *.tsbuildinfo",
"test": "vitest",
"new-crd-package": "node scripts/new-crd-package.ts",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,cjs,mjs}": "eslint --fix",
"*.go": "bash -c 'cd internal/go-generate/go && golangci-lint run --fix ./...' --"
},
"engines": {
"node": ">=22",
"pnpm": ">=11"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.27.1",
"@eslint/js": "^10.0.1",
"@kubernetes-models/diff-crd-inputs": "workspace:*",
"@tsconfig/node22": "^22.0.5",
"@types/node": "^25.6.0",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"@vitest/eslint-plugin": "^1.6.16",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-prettier": "^5.5.5",
"execa": "^9.6.1",
"globals": "^17.5.0",
"human-id": "^4.0.0",
"husky": "^9.1.7",
"jest-extended": "^7.0.0",
"lint-staged": "^16.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"syncpack": "^14.3.0",
"turbo": "^2.2.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vite": "^8.0.10",
"vitest": "^4.1.5",
"yargs": "^18.0.0"
},
"syncpack": {
"source": [
"package.json",
"core/*/package.json",
"first-party/*/package.json",
"internal/*/package.json",
"third-party/*/package.json",
"utils/*/package.json",
"!**/dist/package.json"
]
},
"packageManager": "pnpm@11.0.3"
}