@oscharko-dev/test-intelligence 0.0.1-beta.0 → 0.1.0-beta.1
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/CODE_OF_CONDUCT.md +22 -0
- package/CONTRIBUTING.md +38 -0
- package/GOVERNANCE.md +36 -0
- package/LICENSE +199 -0
- package/NOTICE +12 -0
- package/README.md +71 -10
- package/SECURITY.md +64 -0
- package/SUPPORT.md +18 -0
- package/dist/cli.cjs +66559 -0
- package/dist/cli.cjs.map +1 -0
- package/dist/cli.d.cts +31 -0
- package/dist/cli.d.ts +31 -0
- package/dist/cli.js +66532 -0
- package/dist/cli.js.map +1 -0
- package/dist/contracts/index.cjs +2087 -0
- package/dist/contracts/index.cjs.map +1 -0
- package/dist/contracts/index.d.cts +1 -0
- package/dist/contracts/index.d.ts +1 -0
- package/dist/contracts/index.js +1665 -0
- package/dist/contracts/index.js.map +1 -0
- package/dist/index.cjs +1255 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +252 -0
- package/dist/index.d.ts +252 -0
- package/dist/index.js +1250 -0
- package/dist/index.js.map +1 -0
- package/dist/server-entrypoint.cjs +1645 -0
- package/dist/server-entrypoint.cjs.map +1 -0
- package/dist/server-entrypoint.d.cts +102 -0
- package/dist/server-entrypoint.d.ts +102 -0
- package/dist/server-entrypoint.js +1637 -0
- package/dist/server-entrypoint.js.map +1 -0
- package/package.json +156 -9
- package/index.js +0 -8
package/package.json
CHANGED
|
@@ -1,20 +1,108 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oscharko-dev/test-intelligence",
|
|
3
|
-
"version": "0.0
|
|
4
|
-
"description": "Test Intelligence
|
|
5
|
-
"
|
|
6
|
-
"
|
|
3
|
+
"version": "0.1.0-beta.1",
|
|
4
|
+
"description": "Test Intelligence is a standalone enterprise package for regulated quality and testing intelligence workloads.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"engines": {
|
|
7
|
+
"node": ">=22.13.0"
|
|
8
|
+
},
|
|
9
|
+
"packageManager": "pnpm@10.33.0",
|
|
10
|
+
"sideEffects": false,
|
|
11
|
+
"main": "./dist/index.cjs",
|
|
12
|
+
"module": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"import": {
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"default": "./dist/index.js"
|
|
19
|
+
},
|
|
20
|
+
"require": {
|
|
21
|
+
"types": "./dist/index.d.cts",
|
|
22
|
+
"default": "./dist/index.cjs"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"./contracts": {
|
|
26
|
+
"import": {
|
|
27
|
+
"types": "./dist/contracts/index.d.ts",
|
|
28
|
+
"default": "./dist/contracts/index.js"
|
|
29
|
+
},
|
|
30
|
+
"require": {
|
|
31
|
+
"types": "./dist/contracts/index.d.cts",
|
|
32
|
+
"default": "./dist/contracts/index.cjs"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"./package.json": "./package.json"
|
|
36
|
+
},
|
|
37
|
+
"bin": {
|
|
38
|
+
"test-intelligence": "./dist/cli.js"
|
|
39
|
+
},
|
|
7
40
|
"files": [
|
|
8
|
-
"
|
|
9
|
-
"README.md"
|
|
41
|
+
"dist",
|
|
42
|
+
"README.md",
|
|
43
|
+
"LICENSE",
|
|
44
|
+
"NOTICE",
|
|
45
|
+
"GOVERNANCE.md",
|
|
46
|
+
"CONTRIBUTING.md",
|
|
47
|
+
"SECURITY.md",
|
|
48
|
+
"CODE_OF_CONDUCT.md",
|
|
49
|
+
"SUPPORT.md"
|
|
10
50
|
],
|
|
11
51
|
"scripts": {
|
|
12
|
-
"
|
|
52
|
+
"build": "pnpm run workspaces:build && pnpm run build:package",
|
|
53
|
+
"build:package": "tsup",
|
|
54
|
+
"typecheck": "tsc --noEmit",
|
|
55
|
+
"lint": "eslint src",
|
|
56
|
+
"cli": "tsx packages/cli/src/cli.ts",
|
|
57
|
+
"local:start": "node scripts/start-local.mjs",
|
|
58
|
+
"local:start:mock": "node scripts/start-local.mjs --mock",
|
|
59
|
+
"local:start:prod": "node scripts/start-local.mjs --mode=prod",
|
|
60
|
+
"test:final-e2e": "node scripts/run-final-e2e.mjs",
|
|
61
|
+
"local:stop": "node scripts/stop-local.mjs",
|
|
62
|
+
"format": "prettier --write .",
|
|
63
|
+
"format:check": "prettier --check .",
|
|
64
|
+
"test": "tsx --test \"src/**/*.test.ts\" \"integration/**/*.test.ts\"",
|
|
65
|
+
"test:formal-verification": "tsx --test packages/agentic-harness/src/formal-verification.test.ts && node --import tsx scripts/run-formal-verification.mjs --generated-at 1970-01-01T00:00:00.000Z --output-dir node_modules/.cache/formal-verification",
|
|
66
|
+
"test:ti-live-smoke": "node -e \"console.log('[ti-live-smoke] live lane requires TEST_INTELLIGENCE_LLM_API_KEY; configure the optional workflow secrets before enabling it.')\"",
|
|
67
|
+
"test:ti-drift-canary": "node -e \"console.log('[ti-drift-canary] live lane requires TEST_INTELLIGENCE_LLM_API_KEY; configure the optional workflow secrets before enabling it.')\"",
|
|
68
|
+
"test:ti-live-e2e": "node -e \"console.log('[ti-live-e2e] live lane requires the full Azure Foundry secret set; configure the optional workflow secrets before enabling it.')\"",
|
|
69
|
+
"test:mutation": "stryker run",
|
|
70
|
+
"docs": "typedoc",
|
|
71
|
+
"docs:api": "typedoc",
|
|
72
|
+
"check:publint": "publint",
|
|
73
|
+
"check:attw": "attw --pack",
|
|
74
|
+
"check:package-shape": "node scripts/check-package-shape.mjs",
|
|
75
|
+
"check:license-policy": "node scripts/check-license-policy.mjs",
|
|
76
|
+
"check:lockfile-hosts": "node scripts/check-lockfile-hosts.mjs",
|
|
77
|
+
"check:no-telemetry": "node scripts/check-no-telemetry.mjs",
|
|
78
|
+
"check:supply-chain-iocs": "node scripts/check-supply-chain-iocs.mjs",
|
|
79
|
+
"check:scorecard-threshold": "node scripts/check-scorecard-threshold.mjs",
|
|
80
|
+
"check:sbom-parity": "node scripts/check-sbom-parity.mjs",
|
|
81
|
+
"check:reproducible-build": "node scripts/verify-reproducible-build.mjs",
|
|
82
|
+
"check:npm-sbom-smoke": "node scripts/npm-sbom-smoke.mjs",
|
|
83
|
+
"check:parity": "node --import tsx scripts/check-parity.mjs",
|
|
84
|
+
"check:depcruise": "depcruise --config .dependency-cruiser.cjs packages src",
|
|
85
|
+
"workspaces:build": "pnpm -r --filter \"./packages/*\" run build",
|
|
86
|
+
"workspaces:typecheck": "pnpm -r --filter \"./packages/*\" run typecheck",
|
|
87
|
+
"workspaces:lint": "pnpm -r --filter \"./packages/*\" run lint",
|
|
88
|
+
"workspaces:test": "pnpm -r --filter \"./packages/*\" run test",
|
|
89
|
+
"check:sandbox-parity": "node --import tsx scripts/check-sandbox-parity.mjs",
|
|
90
|
+
"parity:extract": "node --import tsx scripts/extract-parity-fixtures.mjs",
|
|
91
|
+
"sbom:cyclonedx": "node scripts/generate-cyclonedx.mjs --ignore-npm-errors",
|
|
92
|
+
"sbom:cyclonedx:container": "node scripts/generate-cyclonedx-container.mjs",
|
|
93
|
+
"sbom:spdx": "node scripts/generate-spdx.mjs",
|
|
94
|
+
"test:airgap-smoke": "node scripts/run-airgap-smoke.mjs",
|
|
95
|
+
"test:airgap-install": "node scripts/verify-airgap-install.mjs",
|
|
96
|
+
"test:fips-smoke": "node scripts/fips-smoke.mjs",
|
|
97
|
+
"release:check": "node scripts/release-readiness.mjs",
|
|
98
|
+
"prepare": "git config core.hooksPath .githooks"
|
|
13
99
|
},
|
|
14
100
|
"keywords": [
|
|
15
101
|
"pre-beta",
|
|
16
102
|
"test-intelligence",
|
|
17
|
-
"
|
|
103
|
+
"enterprise",
|
|
104
|
+
"quality-assurance",
|
|
105
|
+
"governance"
|
|
18
106
|
],
|
|
19
107
|
"repository": {
|
|
20
108
|
"type": "git",
|
|
@@ -25,8 +113,67 @@
|
|
|
25
113
|
},
|
|
26
114
|
"homepage": "https://github.com/oscharko-dev/test-intelligence#readme",
|
|
27
115
|
"author": "oscharko-dev",
|
|
28
|
-
"license": "
|
|
116
|
+
"license": "Apache-2.0",
|
|
29
117
|
"publishConfig": {
|
|
30
118
|
"access": "public"
|
|
119
|
+
},
|
|
120
|
+
"pnpm": {
|
|
121
|
+
"overrides": {
|
|
122
|
+
"esbuild": "^0.25.0",
|
|
123
|
+
"fflate": "0.7.4",
|
|
124
|
+
"postcss": "^8.5.10",
|
|
125
|
+
"qs": "^6.15.2",
|
|
126
|
+
"vite": "^6.4.2"
|
|
127
|
+
},
|
|
128
|
+
"ignoredOptionalDependencies": [
|
|
129
|
+
"sharp"
|
|
130
|
+
]
|
|
131
|
+
},
|
|
132
|
+
"dependencies": {
|
|
133
|
+
"zod": "^4.4.2",
|
|
134
|
+
"@oscharko-dev/ti-security": "workspace:*",
|
|
135
|
+
"@oscharko-dev/ti-tenant": "workspace:*",
|
|
136
|
+
"@oscharko-dev/ti-core-engine": "workspace:*",
|
|
137
|
+
"@oscharko-dev/ti-model-gateway": "workspace:*",
|
|
138
|
+
"@oscharko-dev/ti-evidence": "workspace:*",
|
|
139
|
+
"@oscharko-dev/ti-quality": "workspace:*",
|
|
140
|
+
"@oscharko-dev/ti-multi-source": "workspace:*",
|
|
141
|
+
"@oscharko-dev/ti-review": "workspace:*",
|
|
142
|
+
"@oscharko-dev/ti-integrations": "workspace:*",
|
|
143
|
+
"@oscharko-dev/ti-eval": "workspace:*",
|
|
144
|
+
"@oscharko-dev/ti-agentic-harness": "workspace:*",
|
|
145
|
+
"@oscharko-dev/ti-contracts": "workspace:*",
|
|
146
|
+
"@oscharko-dev/ti-production-runner": "workspace:*",
|
|
147
|
+
"@oscharko-dev/ti-cli": "workspace:*"
|
|
148
|
+
},
|
|
149
|
+
"peerDependencies": {
|
|
150
|
+
"@opentelemetry/api": "^1.9.0"
|
|
151
|
+
},
|
|
152
|
+
"peerDependenciesMeta": {
|
|
153
|
+
"@opentelemetry/api": {
|
|
154
|
+
"optional": true
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"devDependencies": {
|
|
158
|
+
"@arethetypeswrong/cli": "^0.18.2",
|
|
159
|
+
"@cyclonedx/cyclonedx-npm": "^4.2.1",
|
|
160
|
+
"@eslint/js": "^10.0.1",
|
|
161
|
+
"dependency-cruiser": "^17.4.2",
|
|
162
|
+
"@opentelemetry/api": "^1.9.1",
|
|
163
|
+
"@stryker-mutator/core": "9.6.1",
|
|
164
|
+
"@types/node": "^25.6.0",
|
|
165
|
+
"ajv": "8.20.0",
|
|
166
|
+
"ajv-formats": "3.0.1",
|
|
167
|
+
"eslint": "^10.3.0",
|
|
168
|
+
"fast-check": "^4.7.0",
|
|
169
|
+
"globals": "^17.6.0",
|
|
170
|
+
"prettier": "^3.8.3",
|
|
171
|
+
"publint": "^0.3.18",
|
|
172
|
+
"tsup": "^8.5.1",
|
|
173
|
+
"tsx": "^4.21.0",
|
|
174
|
+
"typedoc": "0.28.19",
|
|
175
|
+
"typedoc-plugin-markdown": "4.11.0",
|
|
176
|
+
"typescript": "^6.0.3",
|
|
177
|
+
"typescript-eslint": "^8.59.1"
|
|
31
178
|
}
|
|
32
179
|
}
|