-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.11 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
{
"name": "k8s-api-provider",
"version": "0.0.25",
"description": "K8s ui data provider",
"main": "lib/index.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git@github.com:webzard-io/k8s-api-provider.git"
},
"scripts": {
"start": "tsup --watch",
"prepublish": "tsup",
"build": "tsup",
"lint": "eslint src --ext .ts --quiet",
"typings": "tsc",
"test": "jest",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"prepare": "cd .. && husky installtemplate/.husky",
"postinstall": "husky install",
"prepack": "npx --quiet pinst --disable",
"postpack": "npx --quiet pinst --enable"
},
"maintainers": [
"admin0"
],
"author": "SmartX.dev",
"license": "MIT",
"files": [
"lib"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/*.{js,ts,tsx,yml,json}": [
"node -v",
"prettier --write"
]
},
"dependencies": {
"kubernetes-types": "^1.26.0",
"ky": "^0.33.3",
"lodash": "^4.17.15",
"mitt": "^3.0.1"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@kubernetes/client-node": "^0.18.1",
"@refinedev/core": "^4.44.4",
"@types/jest": "^29",
"@types/lodash": "^4.14.149",
"@types/node": "^18.16.2",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.36.0",
"husky": "^8.0.0",
"jest": "^29",
"prettier": "^2.5.0",
"ts-jest": "^29",
"tsup": "^6.7.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@refinedev/core": "^4.44.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}