UNPKG

2.96 kBJSONView Raw
1{
2 "name": "@storybook/addon-a11y",
3 "version": "7.0.18",
4 "description": "Test component compliance with web accessibility standards",
5 "keywords": [
6 "a11y",
7 "accessibility",
8 "addon",
9 "storybook",
10 "valid",
11 "verify",
12 "test"
13 ],
14 "homepage": "https://github.com/storybookjs/storybook/tree/next/code/addons/a11y",
15 "bugs": {
16 "url": "https://github.com/storybookjs/storybook/issues"
17 },
18 "repository": {
19 "type": "git",
20 "url": "https://github.com/storybookjs/storybook.git",
21 "directory": "code/addons/a11y"
22 },
23 "funding": {
24 "type": "opencollective",
25 "url": "https://opencollective.com/storybook"
26 },
27 "license": "MIT",
28 "exports": {
29 ".": {
30 "types": "./dist/index.d.ts",
31 "node": "./dist/index.js",
32 "require": "./dist/index.js",
33 "import": "./dist/index.mjs"
34 },
35 "./manager": {
36 "types": "./dist/manager.d.ts",
37 "require": "./dist/manager.js",
38 "import": "./dist/manager.mjs"
39 },
40 "./preview": {
41 "types": "./dist/preview.d.ts",
42 "require": "./dist/preview.js",
43 "import": "./dist/preview.mjs"
44 },
45 "./register": {
46 "types": "./dist/manager.d.ts",
47 "require": "./dist/manager.js",
48 "import": "./dist/manager.mjs"
49 },
50 "./package.json": "./package.json"
51 },
52 "main": "dist/index.js",
53 "module": "dist/index.mjs",
54 "types": "dist/index.d.ts",
55 "files": [
56 "dist/**/*",
57 "README.md",
58 "*.js",
59 "*.d.ts"
60 ],
61 "scripts": {
62 "check": "../../../scripts/node_modules/.bin/tsc --noEmit",
63 "prep": "../../../scripts/prepare/bundle.ts"
64 },
65 "dependencies": {
66 "@storybook/addon-highlight": "7.0.18",
67 "@storybook/channels": "7.0.18",
68 "@storybook/client-logger": "7.0.18",
69 "@storybook/components": "7.0.18",
70 "@storybook/core-events": "7.0.18",
71 "@storybook/global": "^5.0.0",
72 "@storybook/manager-api": "7.0.18",
73 "@storybook/preview-api": "7.0.18",
74 "@storybook/theming": "7.0.18",
75 "@storybook/types": "7.0.18",
76 "axe-core": "^4.2.0",
77 "lodash": "^4.17.21",
78 "react-resize-detector": "^7.1.2"
79 },
80 "devDependencies": {
81 "@testing-library/react": "^11.2.2",
82 "resize-observer-polyfill": "^1.5.1",
83 "typescript": "~4.9.3"
84 },
85 "peerDependencies": {
86 "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
87 "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
88 },
89 "peerDependenciesMeta": {
90 "react": {
91 "optional": true
92 },
93 "react-dom": {
94 "optional": true
95 }
96 },
97 "publishConfig": {
98 "access": "public"
99 },
100 "bundler": {
101 "entries": [
102 "./src/index.ts",
103 "./src/manager.tsx",
104 "./src/preview.tsx"
105 ]
106 },
107 "gitHead": "8edc25418ec52a0ff223860677716303df7cb09f",
108 "storybook": {
109 "displayName": "Accessibility",
110 "icon": "https://user-images.githubusercontent.com/263385/101991665-47042f80-3c7c-11eb-8f00-64b5a18f498a.png",
111 "unsupportedFrameworks": [
112 "react-native"
113 ]
114 }
115}