-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.36 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.36 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
{
"name": "@appthrust/kest",
"version": "0.18.0",
"description": "Kubernetes E2E testing framework designed for humans and AI alike",
"type": "module",
"module": "ts/index.ts",
"exports": {
".": {
"types": "./ts/index.ts",
"default": "./ts/index.ts"
},
"./biome/recommended.json": "./biome/recommended.json"
},
"files": [
"ts/**/*.ts",
"!ts/**/*.test.ts",
"biome/",
"example/",
"LICENSE",
"README.md"
],
"keywords": [
"kubernetes",
"k8s",
"e2e",
"testing",
"bun",
"kubectl",
"operator",
"controller",
"webhook",
"typescript"
],
"author": "appthrust",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/appthrust/kest.git"
},
"homepage": "https://github.com/appthrust/kest#readme",
"bugs": {
"url": "https://github.com/appthrust/kest/issues"
},
"engines": {
"bun": ">=1.3.8"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@shikijs/cli": "^3.21.0",
"@suin/shell-escape-arg": "^0.1.2"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@suin/biome.json": "^0.1.0",
"@taml/encoder": "^1.0.0",
"@tsconfig/bun": "^1.0.10",
"@tsconfig/strictest": "^2.0.8",
"@types/bun": "^1.3.7",
"bun": "^1.3.8",
"outdent": "^0.8.0",
"oxfmt": "^0.28.0"
}
}