-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.31 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
{
"name": "kubekavach",
"version": "0.0.0",
"private": true,
"description": "Developer-first Kubernetes security scanner with local pod replay",
"keywords": [
"kubernetes",
"security",
"debugging",
"replay",
"k8s"
],
"homepage": "https://kubekavach.gensecai.org",
"bugs": {
"url": "https://github.com/gensecaihq/kubekavach/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gensecaihq/kubekavach.git"
},
"license": "Apache-2.0",
"author": "KubeKavach Team",
"type": "module",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"test": "turbo test",
"clean": "turbo clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,yml,yaml}\"",
"prepare": "husky install"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"turbo": "^1.11.3",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.14.1",
"dependencies": {
"node-fetch": "^3.3.2"
}
}