@kb-labs/qa-entry 2.34.0 → 2.36.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
CHANGED
|
@@ -1,39 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kb-labs/qa-entry",
|
|
3
|
-
"version": "2.34.0",
|
|
4
|
-
"type": "module",
|
|
5
3
|
"description": "CLI commands for KB Labs QA Plugin — qa:run, qa:save, qa:history, qa:trends, qa:regressions, baseline:update, baseline:status.",
|
|
4
|
+
"version": "2.36.0",
|
|
5
|
+
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
-
"
|
|
11
|
-
"
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
12
|
},
|
|
13
13
|
"./plugin-manifest": {
|
|
14
|
-
"
|
|
15
|
-
"
|
|
14
|
+
"types": "./dist/manifest.d.ts",
|
|
15
|
+
"import": "./dist/manifest.js"
|
|
16
16
|
},
|
|
17
17
|
"./dist/*": "./dist/*"
|
|
18
18
|
},
|
|
19
|
-
"kb": {
|
|
20
|
-
"manifest": "./dist/manifest.js"
|
|
21
|
-
},
|
|
22
19
|
"files": [
|
|
23
20
|
"dist",
|
|
24
21
|
"README.md",
|
|
25
22
|
"LICENSE"
|
|
26
23
|
],
|
|
27
|
-
"sideEffects": false,
|
|
28
24
|
"dependencies": {
|
|
29
25
|
"zod": "^3.25.76",
|
|
30
|
-
"@kb-labs/
|
|
31
|
-
"@kb-labs/
|
|
32
|
-
"@kb-labs/
|
|
33
|
-
"@kb-labs/
|
|
34
|
-
},
|
|
35
|
-
"peerDependencies": {
|
|
36
|
-
"react": "^18.3.1"
|
|
26
|
+
"@kb-labs/qa-contracts": "2.36.0",
|
|
27
|
+
"@kb-labs/qa-core": "2.36.0",
|
|
28
|
+
"@kb-labs/plugin-contracts": "2.36.0",
|
|
29
|
+
"@kb-labs/sdk": "2.19.0"
|
|
37
30
|
},
|
|
38
31
|
"devDependencies": {
|
|
39
32
|
"@rspack/cli": "latest",
|
|
@@ -47,25 +40,32 @@
|
|
|
47
40
|
"tsup": "^8.5.0",
|
|
48
41
|
"typescript": "^5.6.3",
|
|
49
42
|
"vitest": "^3.2.4",
|
|
50
|
-
"@kb-labs/
|
|
51
|
-
"@kb-labs/
|
|
52
|
-
"@kb-labs/
|
|
43
|
+
"@kb-labs/devkit": "2.36.0",
|
|
44
|
+
"@kb-labs/plugin-runtime": "2.36.0",
|
|
45
|
+
"@kb-labs/studio-plugin-tools": "2.36.0"
|
|
53
46
|
},
|
|
54
47
|
"engines": {
|
|
55
48
|
"node": ">=20.0.0",
|
|
56
49
|
"pnpm": ">=9.0.0"
|
|
57
50
|
},
|
|
51
|
+
"kb": {
|
|
52
|
+
"manifest": "./dist/manifest.js"
|
|
53
|
+
},
|
|
54
|
+
"peerDependencies": {
|
|
55
|
+
"react": "^18.3.1"
|
|
56
|
+
},
|
|
57
|
+
"sideEffects": false,
|
|
58
58
|
"scripts": {
|
|
59
|
-
"pretype-check": "pnpm --filter @kb-labs/qa-entry build",
|
|
60
|
-
"clean": "rimraf dist",
|
|
61
59
|
"build": "tsup --config tsup.config.ts && pnpm build:studio",
|
|
62
60
|
"build:studio": "rspack build --config rspack.studio.config.mjs",
|
|
61
|
+
"clean": "rimraf dist",
|
|
63
62
|
"dev": "tsup --config tsup.config.ts --watch",
|
|
64
63
|
"dev:studio": "rspack build --config rspack.studio.config.mjs --watch",
|
|
65
64
|
"lint": "eslint src --ext .ts",
|
|
66
65
|
"lint:fix": "eslint . --fix",
|
|
67
|
-
"
|
|
66
|
+
"pretype-check": "pnpm --filter @kb-labs/qa-entry build",
|
|
68
67
|
"test": "vitest run --passWithNoTests",
|
|
69
|
-
"test:watch": "vitest"
|
|
68
|
+
"test:watch": "vitest",
|
|
69
|
+
"type-check": "tsc --noEmit"
|
|
70
70
|
}
|
|
71
71
|
}
|