@holmdigital/engine 1.2.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/dist/index.mjs ADDED
@@ -0,0 +1,11 @@
1
+ import {
2
+ PseudoAutomationEngine,
3
+ RegulatoryScanner,
4
+ VirtualDOMBuilder
5
+ } from "./chunk-MFACMI2F.mjs";
6
+ import "./chunk-Y6FXYEAI.mjs";
7
+ export {
8
+ PseudoAutomationEngine,
9
+ RegulatoryScanner,
10
+ VirtualDOMBuilder
11
+ };
package/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "@holmdigital/engine",
3
+ "version": "1.2.0",
4
+ "private": false,
5
+ "publishConfig": {
6
+ "access": "public",
7
+ "registry": "https://registry.npmjs.org/"
8
+ },
9
+ "description": "Regulatory accessibility test engine with Virtual DOM and Shadow DOM support",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/holmdigital/a11y-hd.git",
13
+ "directory": "packages/engine"
14
+ },
15
+ "main": "./dist/index.js",
16
+ "module": "./dist/index.mjs",
17
+ "types": "./dist/index.d.ts",
18
+ "bin": {
19
+ "hd-a11y-scan": "./dist/cli/index.js"
20
+ },
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/index.d.ts",
24
+ "import": "./dist/index.mjs",
25
+ "require": "./dist/index.js"
26
+ }
27
+ },
28
+ "files": [
29
+ "dist",
30
+ "README.md"
31
+ ],
32
+ "scripts": {
33
+ "build": "tsup src/index.ts src/cli/index.ts --format cjs,esm --dts --clean",
34
+ "dev": "tsup src/index.ts src/cli/index.ts --format cjs,esm --dts --watch",
35
+ "test": "vitest",
36
+ "test:integration": "vitest run --config vitest.integration.config.ts",
37
+ "lint": "eslint src --ext .ts"
38
+ },
39
+ "keywords": [
40
+ "accessibility",
41
+ "a11y",
42
+ "scanner",
43
+ "regulatory",
44
+ "wcag",
45
+ "en301549",
46
+ "dos-lagen",
47
+ "testing",
48
+ "virtual-dom"
49
+ ],
50
+ "author": "Holm Digital AB",
51
+ "license": "MIT",
52
+ "dependencies": {
53
+ "@holmdigital/standards": "*",
54
+ "axe-core": "^4.10.2",
55
+ "chalk": "^5.3.0",
56
+ "commander": "^12.1.0",
57
+ "html-validate": "^10.4.0",
58
+ "ora": "^8.1.1",
59
+ "puppeteer": "^23.10.4",
60
+ "ws": "^8.18.0"
61
+ },
62
+ "devDependencies": {
63
+ "@types/node": "^22.10.2",
64
+ "@types/ws": "^8.5.13",
65
+ "tsup": "^8.3.5",
66
+ "typescript": "^5.7.2",
67
+ "vitest": "^2.1.8"
68
+ }
69
+ }