-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.38 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
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@glasskube/scout",
"description": "Glasskube package update util",
"author": "Philip Miglinci",
"version": "0.3.5",
"license": "Apache-2.0",
"homepage": "https://github.com/glasskube/scout",
"bugs": "https://github.com/glasskube/scout/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/glasskube/scout.git"
},
"keywords": [
"oclif",
"glasskube",
"scout",
"kubernetes"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"type": "module",
"main": "",
"types": "dist/index.d.ts",
"exports": "./lib/index.js",
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"oclif": {
"bin": "scout",
"dirname": "scout",
"commands": "./dist/commands"
},
"bin": {
"scout": "./bin/run.js"
},
"scripts": {
"prettier:check": "prettier -c src/**",
"prettier:write": "prettier -w src/**",
"lint": "eslint . --ext .js,.ts",
"test": "mocha --forbid-only 'src/**/*.spec.ts'",
"posttest": "npm run lint",
"build": "shx rm -rf dist && tsc -b",
"prepack": "npm run build && oclif manifest && oclif readme",
"postpack": "shx rm -f oclif.manifest.json",
"prepare": "npm run build",
"generate:types:artifacthub": "scripts/generate_artifacthub_types.sh",
"generate:types:glasskube": "scripts/generate_glasskube_types.sh"
},
"dependencies": {
"@oclif/core": "^4.0.0",
"@octokit/rest": "^21.0.0",
"change-case": "^5.4.3",
"semver": "^7.6.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4.0.0",
"@types/chai": "^5.0.0",
"@types/mocha": "^10",
"@types/node": "^22.0.0",
"chai": "^5.0.0",
"eslint": "^8",
"eslint-config-oclif": "^5",
"eslint-config-oclif-typescript": "^3",
"eslint-config-prettier": "^9.1.0",
"json-schema-to-typescript": "^14.0.0",
"mocha": "^10",
"msw": "2.6.2",
"oclif": "^4.4.2",
"prettier": "3.3.3",
"shx": "^0.3.4",
"tsx": "4.19.2",
"typescript": "^5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
2,
"always",
1000
]
},
"defaultIgnores": false
},
"engines": {
"node": ">=18.0.0"
}
}