@robinmordasiewicz/xcsh 6.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,88 @@
1
+ {
2
+ "name": "@robinmordasiewicz/xcsh",
3
+ "version": "6.15.0",
4
+ "description": "F5 Distributed Cloud Shell - Interactive CLI for F5 XC",
5
+ "type": "module",
6
+ "bin": {
7
+ "xcsh": "./dist/index.js"
8
+ },
9
+ "main": "./dist/index.js",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/robinmordasiewicz/xcsh.git"
13
+ },
14
+ "homepage": "https://robinmordasiewicz.github.io/xcsh",
15
+ "publishConfig": {
16
+ "registry": "https://registry.npmjs.org/",
17
+ "access": "public"
18
+ },
19
+ "files": [
20
+ "dist/",
21
+ "completions/"
22
+ ],
23
+ "scripts": {
24
+ "build": "tsup",
25
+ "build:binaries": "./scripts/build-binaries.sh",
26
+ "build:release": "npm run build && npm run build:binaries",
27
+ "dev": "tsx src/index.tsx",
28
+ "start": "node dist/index.js",
29
+ "test": "vitest",
30
+ "test:coverage": "vitest --coverage",
31
+ "lint": "eslint src",
32
+ "lint:fix": "eslint src --fix",
33
+ "format": "prettier --write \"src/**/*.{ts,tsx}\"",
34
+ "format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
35
+ "typecheck": "tsc --noEmit",
36
+ "security:audit": "npm audit --audit-level=high",
37
+ "validate": "npm run typecheck && npm run lint && npm run format:check",
38
+ "generate:domains": "tsx scripts/generate-domains.ts",
39
+ "generate:completions": "tsx scripts/generate-completions.ts",
40
+ "generate": "npm run generate:domains && npm run generate:completions",
41
+ "prebuild": "npm run generate"
42
+ },
43
+ "keywords": [
44
+ "f5",
45
+ "cli",
46
+ "terminal",
47
+ "ink",
48
+ "react"
49
+ ],
50
+ "author": "Robin Mordasiewicz",
51
+ "license": "MIT",
52
+ "dependencies": {
53
+ "chalk": "^5.3.0",
54
+ "commander": "^12.1.0",
55
+ "conf": "^13.0.1",
56
+ "ink": "^5.2.1",
57
+ "ink-text-input": "^6.0.0",
58
+ "react": "^18.3.1",
59
+ "string-width": "^7.2.0",
60
+ "yaml": "^2.6.1"
61
+ },
62
+ "devDependencies": {
63
+ "@inkjs/ui": "^2.0.0",
64
+ "@types/node": "^22.10.2",
65
+ "@types/react": "^18.3.14",
66
+ "@typescript-eslint/eslint-plugin": "^8.18.1",
67
+ "@typescript-eslint/parser": "^8.18.1",
68
+ "@vitest/coverage-v8": "^2.1.8",
69
+ "@yao-pkg/pkg": "^6.11.0",
70
+ "eslint": "^9.17.0",
71
+ "eslint-config-prettier": "^9.1.0",
72
+ "eslint-plugin-react": "^7.37.2",
73
+ "eslint-plugin-react-hooks": "^5.1.0",
74
+ "eslint-plugin-security": "^3.0.1",
75
+ "husky": "^9.1.7",
76
+ "ink-testing-library": "^4.0.0",
77
+ "lint-staged": "^16.2.7",
78
+ "msw": "^2.7.0",
79
+ "prettier": "^3.4.2",
80
+ "tsup": "^8.3.5",
81
+ "tsx": "^4.19.2",
82
+ "typescript": "^5.7.2",
83
+ "vitest": "^2.1.8"
84
+ },
85
+ "engines": {
86
+ "node": ">=18.0.0"
87
+ }
88
+ }