-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.47 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.47 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
{
"name": "a11y-pilot",
"version": "1.1.0",
"description": "AI-powered accessibility scanner that uses GitHub Copilot CLI to auto-fix a11y issues in frontend codebases",
"main": "src/cli.js",
"bin": {
"a11y-pilot": "./bin/a11y-pilot.js"
},
"type": "module",
"files": [
"bin/",
"src/",
"LICENSE",
"README.md"
],
"scripts": {
"start": "node bin/a11y-pilot.js",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "node bin/a11y-pilot.js --help"
},
"keywords": [
"accessibility",
"a11y",
"copilot",
"cli",
"scanner",
"wcag",
"aria",
"semantic-html",
"github-copilot",
"lint",
"a11y-lint",
"copilot-cli",
"keyboard-navigation",
"screen-reader"
],
"author": "Safvan <github.com/Safvan-tsy>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Safvan-tsy/a11y-pilot.git"
},
"homepage": "https://github.com/Safvan-tsy/a11y-pilot#readme",
"bugs": {
"url": "https://github.com/Safvan-tsy/a11y-pilot/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@babel/parser": "^7.29.0",
"@babel/traverse": "^7.29.0",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"diff": "^8.0.3",
"figures": "^6.1.0",
"gradient-string": "^3.0.0",
"htmlparser2": "^10.1.0",
"log-symbols": "^7.0.1",
"ora": "^9.3.0"
},
"devDependencies": {
"vitest": "^4.0.18"
}
}