@exodus/xqa 1.1.0 → 1.2.3
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/LICENSE +21 -0
- package/dist/cli.js +16966 -0
- package/dist/{index.cjs → xqa.cjs} +31299 -31155
- package/package.json +25 -23
package/package.json
CHANGED
|
@@ -1,37 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/xqa",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=22"
|
|
7
7
|
},
|
|
8
8
|
"files": [
|
|
9
|
-
"dist/
|
|
9
|
+
"dist/xqa.cjs",
|
|
10
|
+
"dist/cli.js"
|
|
10
11
|
],
|
|
11
12
|
"bin": {
|
|
12
|
-
"xqa": "
|
|
13
|
-
},
|
|
14
|
-
"scripts": {
|
|
15
|
-
"dev": "node scripts/build.mjs --watch",
|
|
16
|
-
"build:link": "pnpm link --global",
|
|
17
|
-
"dev:link": "pnpm link --global && pnpm run dev",
|
|
18
|
-
"build": "node scripts/build.mjs",
|
|
19
|
-
"typecheck": "tsc --noEmit",
|
|
20
|
-
"lint": "eslint src && prettier --check .",
|
|
21
|
-
"lint:fix": "eslint src --fix && prettier --write .",
|
|
22
|
-
"test": "vitest run",
|
|
23
|
-
"check": "pnpm run lint && pnpm run typecheck && pnpm run test",
|
|
24
|
-
"check:fix": "pnpm run lint:fix && pnpm run typecheck && pnpm run test"
|
|
13
|
+
"xqa": "dist/xqa.cjs"
|
|
25
14
|
},
|
|
26
15
|
"devDependencies": {
|
|
27
16
|
"@inquirer/prompts": "^7.5.2",
|
|
28
|
-
"@qa-agents/eslint-config": "workspace:*",
|
|
29
|
-
"@qa-agents/explorer": "workspace:*",
|
|
30
|
-
"@qa-agents/observer": "workspace:*",
|
|
31
|
-
"@qa-agents/pipeline": "workspace:*",
|
|
32
|
-
"@qa-agents/shared": "workspace:*",
|
|
33
17
|
"@yao-pkg/pkg": "^6.14.2",
|
|
34
|
-
"@qa-agents/typescript-config": "workspace:*",
|
|
35
18
|
"@types/node": "^22.0.0",
|
|
36
19
|
"chalk": "^5.4.1",
|
|
37
20
|
"commander": "^14.0.0",
|
|
@@ -41,7 +24,13 @@
|
|
|
41
24
|
"neverthrow": "^8.2.0",
|
|
42
25
|
"typescript": "^5.8.3",
|
|
43
26
|
"vitest": "^3.2.1",
|
|
44
|
-
"zod": "^3.0.0"
|
|
27
|
+
"zod": "^3.0.0",
|
|
28
|
+
"@qa-agents/eslint-config": "0.0.0",
|
|
29
|
+
"@qa-agents/explorer": "0.0.0",
|
|
30
|
+
"@qa-agents/shared": "0.0.0",
|
|
31
|
+
"@qa-agents/typescript-config": "0.0.0",
|
|
32
|
+
"@qa-agents/observer": "0.0.0",
|
|
33
|
+
"@qa-agents/pipeline": "0.0.0"
|
|
45
34
|
},
|
|
46
35
|
"dependencies": {
|
|
47
36
|
"@mobilenext/mobile-mcp": "^0.0.50",
|
|
@@ -53,5 +42,18 @@
|
|
|
53
42
|
"assets": [
|
|
54
43
|
"../../node_modules/.pnpm/@img+sharp-darwin-arm64@*/node_modules/@img/sharp-darwin-arm64/**"
|
|
55
44
|
]
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"dev": "node scripts/build.mjs --watch",
|
|
48
|
+
"build:link": "pnpm link --global",
|
|
49
|
+
"build:unlink": "pnpm remove -g @exodus/xqa",
|
|
50
|
+
"dev:link": "pnpm link --global && pnpm run dev",
|
|
51
|
+
"build": "node scripts/build.mjs",
|
|
52
|
+
"typecheck": "tsc --noEmit",
|
|
53
|
+
"lint": "eslint src && prettier --check .",
|
|
54
|
+
"lint:fix": "eslint src --fix && prettier --write .",
|
|
55
|
+
"test": "vitest run",
|
|
56
|
+
"check": "pnpm run lint && pnpm run typecheck && pnpm run test",
|
|
57
|
+
"check:fix": "pnpm run lint:fix && pnpm run typecheck && pnpm run test"
|
|
56
58
|
}
|
|
57
|
-
}
|
|
59
|
+
}
|