-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
57 lines (57 loc) · 1.25 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
{
"name": "@dot-i/k8s-operator",
"version": "2.0.0",
"description": "Build Kubernetes operators in NodeJS (and TypeScript)",
"author": {
"name": "Nico Francois",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/dot-i/k8s-operator-node"
},
"files": [
"dist/*.ts",
"dist/*.js",
"*.md"
],
"license": "Apache-2.0",
"main": "dist/operator.js",
"types": "dist/operator.d.ts",
"engines": {
"node": ">=18"
},
"dependencies": {
"@kubernetes/client-node": "^0.22.3",
"async": "^3.2.6",
"gaxios": "^6.7.1"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/async": "^3.2.24",
"@types/byline": "^4.2.36",
"@types/js-yaml": "^4.0.9",
"@types/node": "^18",
"@types/ws": "^8.5.13",
"eslint": "^9.16.0",
"mkdirp": "^3.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"scripts": {
"lint": "eslint ./src",
"clean": "rm -Rf node_modules/ dist/",
"build": "tsc",
"watch": "tsc --watch",
"prepare": "rm -Rf dist/ && npm run build"
},
"keywords": [
"kubernetes",
"k8s",
"operator"
],
"overrides": {
"request": "npm:@cypress/request@^3.0.1"
}
}