-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.08 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
{
"name": "qxnetworkhelper",
"version": "0.1.0",
"description": "CLI tool for managing QX Network configurations",
"type": "module",
"main": "dist/cli.js",
"files": [
"dist",
".agents/skills/qxnethelper/SKILL.md"
],
"bin": {
"qxnethelper": "dist/cli.js"
},
"scripts": {
"lint": "eslint src tests",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:e2e": "vitest run tests/e2e/full-workflow.test.ts",
"build": "tsc",
"qa:update-env": "node scripts/qa-update-env.mjs",
"qa:refresh-base": "node scripts/qa-refresh-base.mjs"
},
"keywords": [
"cli",
"network",
"proxy",
"qx"
],
"author": "",
"license": "MIT",
"dependencies": {
"commander": "^12.0.0",
"yaml": "^2.7.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"nock": "^14.0.0",
"tsx": "^4.19.0",
"typescript": "^5.3.0",
"vitest": "^1.2.0"
},
"engines": {
"node": ">=18.0.0"
}
}