forked from vlaraort/addon-screen-reader
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.38 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.38 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
{
"name": "storybook-screen-reader",
"version": "1.1.0",
"description": "A Screen Reader Storybook addon for accessibility testing",
"keywords": [
"storybook",
"storybook-addons",
"addons",
"accessibility",
"a11y",
"screen-reader",
"wcag"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/TarunAdobe/addon-screen-reader.git"
},
"homepage": "https://github.com/TarunAdobe/addon-screen-reader#readme",
"bugs": {
"url": "https://github.com/TarunAdobe/addon-screen-reader/issues"
},
"files": [
"dist/**/*",
"README.md",
"*.js"
],
"module": "dist/register.js",
"main": "dist/register.js",
"author": "Tarun Tomar",
"license": "MIT",
"dependencies": {
"@storybook/manager-api": "^8.0.0",
"@storybook/core-events": "^8.0.0",
"@spectrum-web-components/switch": "^0.42.0",
"@spectrum-web-components/theme": "^0.42.0",
"@lit/react": "^1.0.0",
"lit": "^3.1.0",
"react": "^18.2.0",
"query-selector-shadow-dom": "^1.0.0"
},
"devDependencies": {
"esbuild": "^0.20.0"
},
"scripts": {
"build": "esbuild src/register.js --bundle --outfile=dist/register.js --format=esm --external:@storybook/* --external:react --platform=browser --loader:.js=jsx",
"test": "echo 'no tests specified'"
}
}