forked from joe-watkins/a11y-devkit-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1019 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 1019 Bytes
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
{
"name": "a11y-devkit-deploy",
"version": "1.0.2",
"description": "CLI to deploy a11y skills and MCP servers across IDEs",
"license": "MIT",
"type": "module",
"main": "src/cli.js",
"bin": {
"a11y-devkit-deploy": "bin/a11y-devkit.js"
},
"files": [
"bin",
"src",
"config",
"templates",
"README.md"
],
"keywords": [
"accessibility",
"a11y",
"mcp",
"model-context-protocol",
"copilot",
"skills",
"wcag",
"aria",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/joe-watkins/a11y-devkit-deploy.git"
},
"bugs": {
"url": "https://github.com/joe-watkins/a11y-devkit-deploy/issues"
},
"homepage": "https://github.com/joe-watkins/a11y-devkit-deploy#readme",
"author": "Joe Watkins",
"engines": {
"node": ">=18"
},
"scripts": {
"start": "node bin/a11y-devkit.js"
},
"dependencies": {
"boxen": "^5.1.2",
"ora": "^6.3.1",
"picocolors": "^1.1.0",
"prompts": "^2.4.2"
}
}