-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 897 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 897 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
{
"name": "restrict-focus",
"version": "0.2.0",
"description": "A small library to restrict focus/tabbing to only within a specified element. Shadow DOM aware, so it works with web components.",
"homepage": "https://github.com/nullset/restrict-focus",
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/restrict-focus.js",
"default": "./dist/restrict-focus.js"
}
},
"types": "./dist/index.d.ts",
"keywords": [
"focus",
"tab",
"tabbing",
"shadowDOM",
"web components"
],
"author": "Nathan Wright",
"license": "ISC",
"scripts": {
"dev": "vite --port 8082",
"serve": "vite preview",
"build": "vite build"
},
"devDependencies": {
"@types/node": "^22.10.9",
"typescript": "~5.7.3",
"vite": "^6.0.5",
"vite-plugin-dts": "^4.5.0"
}
}