-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.75 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
{
"name": "codea11y",
"publisher": "codea11y",
"displayName": "CodeA11y",
"icon": "./icon.png",
"description": "Helps make your website compliant with WCAG.",
"repository": {
"type": "git",
"url": "https://github.com/peyajm29/codea11y"
},
"version": "0.0.4",
"engines": {
"vscode": "^1.92.0"
},
"categories": [
"AI",
"Chat"
],
"activationEvents": [],
"contributes": {
"chatParticipants": [
{
"id": "codea11y.CodeA11y",
"fullName": "CodeA11y",
"name": "CodeA11y",
"description": "Ask how to edit your website.",
"isSticky": true,
"commands": []
}
],
"configuration": {
"title": "CodeA11y",
"properties": {
"codea11y.websiteUrl": {
"type": "string",
"default": "http://127.0.0.1:5500",
"description": "The URL of your website to analyze for accessibility issues. Works with any framework (React, Angular, vanilla JS, etc.)",
"examples": [
"http://localhost:3000",
"http://localhost:4200",
"http://localhost:8080",
"http://127.0.0.1:5500"
]
},
"codea11y.timeout": {
"type": "number",
"default": 10000,
"description": "Timeout in milliseconds for fetching website content",
"minimum": 1000,
"maximum": 30000
}
}
}
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint \"src/**/*.ts\"",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"@axe-core/cli": "^4.10.2",
"axios": "^1.12.2",
"browser-driver-manager": "^2.0.1"
},
"devDependencies": {
"@types/node": "^20.14.15",
"@types/vscode": "1.90.0",
"@typescript-eslint/eslint-plugin": "^7.14.0",
"@typescript-eslint/parser": "^7.14.0",
"eslint": "^8.26.0",
"typescript": "^5.5.2"
}
}