-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 4.69 KB
/
Copy pathpackage.json
File metadata and controls
139 lines (139 loc) · 4.69 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "accessibility-resolver",
"version": "1.0.1",
"description": "A comprehensive, real-time browser library for automated web accessibility checks, auto-fixes, and user-controlled accessibility enhancements.",
"type": "module",
"main": "./dist/index.global.js",
"author": "Yaron Koresh",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.global.js"
}
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"check": "npm run fix-deps && npm run fix-code && npm run build",
"check:pre-commit": "npm run lint:check && npm run format:check && npm run test",
"clean": "node -e \"import { execSync } from 'child_process'; import fs from 'fs'; const paths = ['./node_modules']; paths.forEach(p => fs.rmSync(p, { recursive: true, force: true })); execSync('npm cache clean --force', { stdio: 'inherit' })\"",
"fix-deps": "(node tools/fix-deps.js && npm install --ignore-scripts || (cd .))",
"fix-code": "npm run generate-types && npm run lint:fix && npm run lint:check && npm run format:fix && npm run format:check && npm run test",
"build": "npm run build:bundle && npm run build:client",
"prepare": "husky",
"build:bundle": "tsup",
"build:client": "node dist_config/generate-client.js",
"coverage": "vitest run --coverage --passWithNoTests",
"test": "npm run test:run && npm run test:types",
"test:run": "vitest run",
"test:types": "tsc --noEmit --project tsconfig/client.json",
"lint:check": "eslint src/ test/ tools/",
"lint:fix": "(eslint src/ test/ tools/ --fix || (cd .))",
"format:fix": "(prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"dist_config/**/*.*\" \"tools/**/*.*\" || (cd .))",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\" \"dist_config/**/*.*\" \"tools/**/*.*\"",
"generate-types": "(tsx tools/generate-types.ts || (cd .))",
"autobot:preview": "node scripts/print_autobot_regression_fixture.cjs",
"autobot:random": "node scripts/run_autobot_scenario_lanes.cjs"
},
"lint-staged": {
"**/*": [
"node -e \"require('child_process').spawn('npm', ['run', 'check:pre-commit'], { shell: true, stdio: 'inherit' })\""
]
},
"keywords": [
"accessibility",
"a11y",
"wcag",
"wcag2.1",
"wcag2.2",
"aria",
"screen-reader",
"keyboard-navigation",
"web-accessibility",
"shadow-dom"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/YaronKoresh/Accessibility-Resolver.git"
},
"bugs": {
"url": "https://github.com/YaronKoresh/Accessibility-Resolver/issues"
},
"homepage": "https://github.com/YaronKoresh/Accessibility-Resolver#readme",
"engines": {
"node": ">=24.0.0"
},
"devDependencies": {
"@eslint/js": "npm:@eslint/[email protected]",
"@types/node": "npm:@types/[email protected]",
"@typescript-eslint/utils": "npm:@typescript-eslint/[email protected]",
"@vitest/coverage-v8": "npm:@vitest/[email protected]",
"ajv": "file:./shim/ajv-shim",
"esbuild": "npm:[email protected]",
"eslint": "npm:[email protected]",
"eslint-config-prettier": "npm:[email protected]",
"eslint-plugin-import-x": "npm:[email protected]",
"eslint-plugin-n": "npm:[email protected]",
"eslint-plugin-promise": "npm:[email protected]",
"eslint-plugin-security": "npm:[email protected]",
"glob": "npm:[email protected]",
"globals": "npm:[email protected]",
"husky": "npm:[email protected]",
"lint-staged": "npm:[email protected]",
"postcss": "npm:[email protected]",
"postcss-modules": "npm:[email protected]",
"prettier": "npm:[email protected]",
"ts-morph": "npm:[email protected]",
"tslib": "npm:[email protected]",
"tsup": "npm:[email protected]",
"tsx": "npm:[email protected]",
"typescript": "npm:[email protected]",
"typescript-eslint": "npm:[email protected]",
"vitest": "npm:[email protected]"
},
"overrides": {
"eslint": {
"ajv": "file:./shim/ajv-shim"
},
"@ts-morph/common": {
"minimatch": "file:./shim/minimatch-shim"
},
"@typescript-eslint/typescript-estree": {
"minimatch": "file:./shim/minimatch-shim"
},
"readdir-glob": {
"minimatch": "file:./shim/minimatch-shim"
},
"glob": {
"minimatch": "file:./shim/minimatch-shim"
},
"vite": [
"8.1.3",
{
"tsx": {
"esbuild": "0.28.1"
}
}
],
"archiver-utils": {
"glob": [
"13.0.6",
{
"minimatch": "file:./shim/minimatch-shim"
}
]
},
"tsup": {
"esbuild": "0.28.1"
},
"tsx": {
"esbuild": "0.28.1"
}
}
}