-
Notifications
You must be signed in to change notification settings - Fork 130
/
package.json
54 lines (54 loc) · 1.79 KB
/
package.json
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
{
"name": "a11y-dialog",
"type": "module",
"version": "8.1.1",
"description": "A tiny script to make dialog windows accessible to assistive technology users.",
"homepage": "https://a11y-dialog.netlify.app/",
"license": "MIT",
"main": "dist/a11y-dialog.js",
"module": "dist/a11y-dialog.esm.js",
"types": "dist/a11y-dialog.d.ts",
"exports": {
".": {
"import": "./dist/a11y-dialog.esm.js",
"browser": "./dist/a11y-dialog.js",
"require": "./dist/a11y-dialog.cjs",
"types": "./dist/a11y-dialog.d.ts"
},
"./*": "./*"
},
"keywords": ["modal", "dialog", "accessibility", "a11y", "focus"],
"author": "Kitty Giraudel (https://kittygiraudel.com)",
"repository": {
"type": "git",
"url": "https://github.com/KittyGiraudel/a11y-dialog"
},
"files": ["dist/*"],
"scripts": {
"build": "rollup -c",
"serve": "npx serve cypress/fixtures -p 5000",
"test": "cypress run --browser chrome",
"test:cjs": "npm install --prefix tests/cjs && npm test --prefix tests/cjs",
"test:esm": "npm install --prefix tests/esm && npm test --prefix tests/esm",
"test:package": "npm run test:cjs && npm run test:esm",
"size": "./size.sh",
"prepare": "husky",
"lint": "biome check --write --unsafe --no-errors-on-unmatched src/*.ts",
"lint:staged": "biome check --write --unsafe --staged --no-errors-on-unmatched src/**/*.ts"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@cypress/fiddle": "^1.19.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"cypress": "^13.7.1",
"cypress-real-events": "^1.7.6",
"husky": "^9.0.11",
"rollup": "^4.4.0",
"typescript": "^5.1.6"
},
"dependencies": {
"focusable-selectors": "^0.8.0"
}
}